@extends("admin.admin_layout.adminlayout") @section("admin_content")

{{$store_count}}

{{ __('chef.stores') }}

{{$product_count}}

{{ __('chef.products') }}

@include('layouts.render.currency',["amount"=>$earnings])

{{ __('chef.earnings') }}

{{$pending_stores }}

{{ __('chef.pendingstores') }}
New Registrations
@foreach($new_stores as $data) @endforeach
Store
Email
Phone number
Subscription End Date
logo_url :'assets/images/store.jpg')}}" class="mx-2 rounded-circle" style="width:40px; height:40px;" >{{$data->store_name}}
{{$data->email}}
{{$data->phone}}
{{date('d-m-Y',strtotime($data->subscription_end_date))}}
Expired Stores
@foreach($expired_stores as $data) @endforeach
Store
Email
Phone number
Subscription End Date
logo_url :'assets/images/store.jpg')}}" class="mx-2 rounded-circle" style="width:40px; height:40px;">{{$data->store_name}}
{{$data->email}}
{{$data->phone}}
{{date('d-m-Y',strtotime($data->subscription_end_date))}}
{{-- --}} @endsection