@extends('admin.layouts.app') @section('title', 'Governorates') @section('content')

{{__('Governorates')}}

{{__('All Governorates listing')}}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if(!empty($governorates)) @php $i=1; @endphp @foreach($governorates as $datas) @php $i++; @endphp @endforeach @else @endif
{{__('ID')}} {{__('Name')}} {{__('Arabic Name')}} {{__('Date')}} {{__('Status')}} {{__('Action')}}
{{$i}} {{$datas->title}} {{$datas->arabic_title}} {{ dateConvertFormat($datas->created_at) }} @if($datas->status=='1') Activated @else De-Activated @endif Edit Delete
{{__('No record found')}}
@endsection