@extends('layouts.admin.master') @section('title') {{ __('Cities') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{ __('Cities') }}

@endslot @endcomponent
@foreach ($cities as $city) @endforeach
{{ __('Name') }} {{ __('Image') }} {{ __('Country') }} {{ __('Language') }} {{ __('Status') }} {{ __('Action') }}
{{ $city->name }} {{ $city->country->name }} {{ $city->language->name }} {{ $city->status == 'active' ? 'Activated' : 'Not Activated' }} {{ $city->status }}
@push('scripts') @include('dashbord.include.custom-datatable') @endpush @endsection