@extends('layouts.master') @section('title') @lang('translation.outlet') @endsection @section('css') @endsection @section('content') {{-- Page Header --}}
Manage and monitor all food court outlets
Total Outlets
With Shops
Food Courts
Active Outlets
| Sr. | Food Court Information | Contact Person | Shop Details | Food Court ID | User | Status | Created Date | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{-- Food Court Information --}}
{{ substr($outlet->outlet_name, 0, 2) }}
{{ $outlet->outlet_name }}@if ($outlet->tenant) Tenant: {{ $outlet->tenant->tenant_name }} @endif |
{{-- Contact Person --}}
{{ $outlet->outlet_contact_name }}
{{ $outlet->outlet_contact_email }}
{{ $outlet->outlet_contact_phone }}
|
{{-- Shop Details --}}
@if ($outlet->shop_count)
{{ $outlet->shop_count }} Shops
@else
No Shops
@endif
@if ($outlet->id)
ID: {{ $outlet->id }}
@endif
@if ($outlet->created_by)
Created by:
{{ $outlet->creator->name ?? 'System' }}
@endif
|
{{-- Food Court ID --}}
@if ($outlet->id) {{ $outlet->id }} @else N/A @endif | {{-- User Column --}}{{-- Status --}} | @if ($outlet->status == 'active') Active @else Inactive @endif | {{-- Created Date --}}
{{ $outlet->created_at->format('d M Y') }}
{{ $outlet->created_at->format('H:i A') }}
|
{{-- Actions --}}
{{-- Hidden delete form --}} |