@extends('admin.index') @section('page_title') {{trans('citys.show')}} @endsection @section('content')

{{trans('citys.show')}}

@if($items->count()>0) @foreach($items as $item) @endforeach @else @endif
ID {{ trans('citys.name')}} {{ trans('citys.name_en')}} {{ trans('citys.price_shipping')}} {{ trans('admin.status')}} {{trans('admin.edit')}} {{trans('admin.delete')}}
{{$item->id}} {{$item->name_ar}} {{$item->name_en}} {{$item->price_shipping}} @if($item->status == 1) {{trans('admin.active')}} @else {{trans('admin.notactive')}} @endif
{{trans('الجدول خالي')}}

@if($items->count()>0)
{{trans('admin.counts')}}{{$items->total()}}
{{$items->appends(\Request::except('_token'))->render()}}
@endif
@endsection