@extends('layouts.app')
@section('title', 'City Codes')
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| ID |
City Name |
Code |
Country |
Actions |
@forelse($cityCodes as $cityCode)
| {{ $cityCode->id }} |
{{ $cityCode->city_name }} |
{{ $cityCode->code }} |
{{ $cityCode->country }} |
|
@empty
|
No city codes found.
|
@endforelse
{{ $cityCodes->appends(request()->query())->links() }}
@endsection