@extends('dashboard.layouts.master') @section('title', 'عرض المناطق') @section('content')
@can('neighborhood_create')
@csrf @isset($editRow['id']) @method('PATCH') @endisset
@endcan
@if (request('city') != null || request('name') != null) @else
@endif
@canany(['neighborhood_edit', 'neighborhood_delete']) @endcanany @foreach ($rows as $row) @canany(['neighborhood_edit', 'neighborhood_delete']) @endcanany @endforeach
التحكمالاسم تابعة إلي مدينة تاريخ الإضافة اضيف بواسطة
@can('neighborhood_edit') - @endcan @can('neighborhood_delete')
@method('DELETE') @csrf
@endcan
{{ $row->name }} {{ $row->city->name }} {{ $row->created_at->format('Y-m-d') }} {!! $row->by != null ? $row->by->full_name : "لا يوجد" !!}
@endsection