@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Provided Sections")}}

{{__("All provided sections")}}

@endsection @section("content") @include("includes.dialog")
@csrf
@foreach($providedSections as $sections) @php $sub_area_name=""; if ($sections->providedSectionSubArea){ $sub_area_name = " - " . $sections->providedSectionSubArea->subArea->sub_area_name; } @endphp {{-- @if(hasPermissions("admin-control"))--}} {{-- --}} {{-- @endif--}} @endforeach
#{{__("ID")}} {{__("Name")}} {{__("Phone Number")}} {{__("City")}} {{__("Main Image")}} {{__("Address")}} {{__("Created At")}}
{{$sections->id}} {{$sections->name}} {{$sections->phone_number}} {{$sections->city . $sub_area_name}} @if($sections->getFirstMediaFile('default')) @endif {{$sections->created_at->diffForHumans()}}--}} {{--
--}} {{-- --}} {{--
--}} {{--
{{$providedSections->appends(["search"=>Request()->search])->links("pagination::bootstrap-4")}}
@endsection @section("scripts") @endsection