@extends('layouts.master') @section('title') {{ __('Dashboard') }} @endsection @section('main_content')
0

{{ __('Total Shop') }}

0

{{ __('Expired Businesses') }}

0

{{ __('Plan Subscribes') }}

0

{{ __('Total Categories') }}

0

{{ __('Total Plans') }}

{{ __('Finance Overview') }}

Total Subscription:

{{ __('Subscription Plan') }}

{{ __('Recent Register') }}

@foreach ($businesses as $business) @endforeach
{{ __('SL') }}. {{ __('Date & Time') }} {{ __('Name') }} {{ __('Category') }} {{ __('Phone') }} {{ __('Subscription Plan') }}
{{ $loop->index + 1 }} {{ formatted_date($business->created_at) }} {{ $business->companyName }} {{ $business->category->name }} {{ $business->phoneNumber }} @if ($business->enrolled_plan?->plan?->subscriptionName == 'Free') {{ $business->enrolled_plan?->plan?->subscriptionName }} @elseif($business->enrolled_plan?->plan?->subscriptionName == 'Premium') {{ $business->enrolled_plan?->plan?->subscriptionName }} @elseif($business->enrolled_plan?->plan?->subscriptionName == 'Standard') {{ $business->enrolled_plan?->plan?->subscriptionName }} @else @endif
@php $currency = default_currency(); @endphp {{-- Hidden input fields to store currency details --}} @endsection @push('js') @endpush