@extends('dashboard.layouts.master') @section('title', 'عرض المدن') @section('content')
@can('city_create')
@csrf @isset($editRow['id']) @method('PATCH') @endisset
@endcan
@canany(['city_edit', 'city_delete']) @endcanany @foreach ($rows as $row) @canany(['city_edit', 'city_delete']) @endcanany @endforeach
التحكمالاسم المناطق تاريخ الإضافة اضيف بواسطة
@can('city_edit') | @endcan @can('city_delete')
@method('DELETE') @csrf
@endcan
{{ $row->name }} ( {{ count($row->neighborhoods) }} ) منطقة {{ parseTime($row->created_at) }} {!! $row->by != null ? $row->by->full_name : "لا يوجد" !!}
@endsection