@extends('admin.layouts.master') @section('title','All Cities - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
# | {{ __('City') }} | {{ __('State') }} | {{ __('Country') }} | {{ __('Delete') }} |
---|---|---|---|---|
1 | {{ $city->name }} | @if(isset($city->state)) {{ $city->state->name }} @endif | @if(isset($city->country)) {{ $city->country->nicename }} @endif |
{{ __('Delete') }}
{{ __('Delete') }}{{ __("Do you really want to delete these records? This process cannot be undone.")}} |