@extends('admin.layouts.app') @section('content')

{{__("Languages")}}

@include('admin.message')
{{__("Add Language")}}
@csrf @include('Language::admin.language.form')
@if(!empty($rows))
{{csrf_field()}}
@endif
{{__("All Languages")}}
@if(count($rows) > 0) @foreach($rows as $row) @endforeach @else @endif
{{__("Name")}} {{__("Locale")}} {{__("Status")}} {{__("Date")}}
@if($row->flag) @endif {{$row->name}} {{$row->locale}} {{ $row->status }} {{ display_date($row->updated_at)}}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection