@extends('layouts.admin') @section('h1') {{$country->official_name}} cities @stop @section('content')
@if (count($objects) > 0)
@foreach($objects as $object) @endforeach
Country Title Order Is Active Updated Created Actions
{{$object->country->official_name}} {{ $object->official_name}} {{ $object->order}} {{ $object->visible ? 'yes' : 'no'}} {{$object->updated_at->diffForHumans()}} {{$object->created_at->diffForHumans()}} {!!Form::open(['route' => ['admin.meta.locations.cities.destroy', $country, $object], 'method' => 'delete'])!!} {!!Form::close()!!}
{!!$objects->render()!!}
@else No items. @endif
@stop @section('footer_js') @stop