@extends('dashboard.layouts.master') @section('title', __('backend.dashboard')) @push('after-styles') @endpush @section('content')
| Business Name | Category Name | Location | Registration Date | Approval Status | |
|---|---|---|---|---|---|
| {{ $business->business_name ?? '-' }} | {{ $business->category->name ?? '-' }} | {{ $business->address }} | {{ $business->created_at ? $business->created_at->format('d-m-Y') : '-' }} | @if($business->approval_status == 1) Approved @elseif($business->approval_status == 0) Pending @endif | |
| No business found | |||||
| Event Name | Business Name | Category Name | Location | Event Date | Approval Status |
|---|---|---|---|---|---|
| {{ $event->title }} | {{ $event->business->business_name ?? '-' }} | {{ $event->category->name ?? '-' }} | {{ $event->location_name }} | {{ $event->event_start ? $event->event_start->format('d-m-Y') : '-' }} | @if($event->approval_status == 1) Approved @elseif($event->approval_status == 0) Pending @endif |
| No events found | |||||