@extends('Layouts.adminLayout') @section('title') {{__('List Language')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
@php $i=1; @endphp @foreach($data['all_lang'] as $value) @endforeach
{{__('Index')}} {{__('Name')}} {{__('Direction')}} {{__('Slug')}} {{__('Status')}} {{__('Default')}} {{__('Possibilities')}}
{{$i++}} {{$value->title}} {{strtoupper($value->direction)}} {{$value->slug}} {{__($value->status)}} @if($value->default == 1) {{__("Default")}} @else {{__("Make Default")}} @endif {{__('Edit Words')}} @if($value->default != 1) @endif
@endsection @section('script') @endsection