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

{{!empty($recovery) ? __('Recovery') : __("Transportation City Prices")}}

@include('admin.message')

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Type Class')}} {{ __('Date')}}
{{$row->name}} {{ display_date($row->updated_at)}}
{{__("No Transportation City Prices found")}}
{{$rows->appends(request()->query())->links()}}
@endsection