@extends('layouts.master') @section('title') @lang('translation.tenant') @endsection @section('css') @endsection @section('content') {{-- Page Header --}}
Manage and monitor all tenant information
Total Tenants
Active Tenants
Inactive Tenants
Restaurant
| Sr. | @lang('translation.tenant_name') | Contact Person | Contact Details | @lang('translation.tenant_type') | @lang('translation.status') | @lang('translation.branch_count') | @lang('translation.created_date') | @lang('translation.Action') |
|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} |
{{ substr($tenant->tenant_name, 0, 2) }}
{{ $tenant->tenant_name }}ID: {{ $tenant->id }} |
{{ $tenant->contact_person_name }}Contact Person |
{{ $tenant->contact_person_email }}
{{ $tenant->contact_person_phone }}
|
@if($tenant->tenant_type == 'Restaurant') Restaurant @else Food Court @endif | @if($tenant->status == 'active') Active @else Inactive @endif | @if($tenant->tenant_type == 'Restaurant') {{count($tenant->branches)}} @else {{count($tenant->outlets)}} @endif |
{{ $tenant->created_at->format('d M Y') }}
{{ $tenant->created_at->format('H:i A') }}
|
{{-- Hidden delete form --}} |