@extends('layout.admin') @section('styles') @endsection @section('content')
@if(session('success')) @endif @if(session('error')) @endif

City / List

@foreach($cities as $city) @if(isset($city->image_url)) @else @endif @endforeach
ID Title Country Page Title Page Url Browser Title Image Status Action
{{$city->id}} {{$city->title}} {{$city->country_title}} {{$city->page_title}} {{getFrontendUrl().\Illuminate\Support\Str::slug($city->continent_title).'/'.\Illuminate\Support\Str::slug($city->country_title).'/'.$city->page_url}} {{$city->browser_title}}City Image @if($city->status == 1) Activated @else Deactivated @endif Edit
@endsection @section('script') @endsection