@extends('laundry::layouts/contentLayoutMaster') @section('title', __(''.$title.'s') ) @section('vendor-style') {{-- vendor css files --}} @livewireStyles @endsection @section('page-style') @endsection @section('content') @if(session()->has('message')) @endif
@foreach($business as $business) @if($business->id!=1) @endif @endforeach
{{ __('ID') }} {{ __('Name') }} {{ __('Phone') }} {{ __('Dated') }} {{ __('Status') }} {{ __('Business') }} {{ __('Type') }} {{ __('Expiry') }} {{ __('Action') }}
{{ $business->id }} {{ $business->name }} {{ $business->phone }} {{ date('Y-m-d', strtotime($business->created_at)) }} {{ $business->status ? 'Enabled' : "Disabled" }} {{ $business->users[0]->name }} {{ $business==null ? '' : $business->business_type==null ? '' : $business->business_type->name }} {{ date('Y-m-d', strtotime($business->expired_at)) }}
@endsection @section('vendor-script') @livewireScripts {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection