@extends("admin.admin_layout.adminlayout") @section("admin_content")
{{ __('chef.stores') }}
{{$store_count}}
{{ __('chef.products') }}
{{$product_count}}
{{ __('chef.earnings') }}
@include('layouts.render.currency',["amount"=>$earnings])
{{ __('chef.pendingstores') }}
{{$pending_stores }}
New Registrations

    @foreach($new_stores as $data)
    Storelogo_url :'assets/images/store.jpg')}}" width="65px" height="65px" style="border-radius: 10px;border: none;">
    {{$data->store_name}}
    {{$data->email}} / {{$data->phone}}
    {{date('d-m-Y',strtotime($data->subscription_end_date))}}
    @endforeach
Expired Stores

    @foreach($expired_stores as $data)
    Storelogo_url :'assets/images/store.jpg')}}" width="65px" height="65px" style="border-radius: 10px;border: none;">
    {{$data->store_name}}
    {{$data->email}} / {{$data->phone}}
    {{date('d-m-Y',strtotime($data->subscription_end_date))}}
    @endforeach
@endsection