@extends('Common::admin.layout.page')
@section('page')
@foreach ($counters as $count)
{{ $count['count'] }}
{{ $count['title'] }}
@endforeach
{{__('ID')}} |
{{__('name')}} |
{{__('phone')}} |
{{__('image')}} |
{{__('Created At')}} |
@if(count($users) > 0)
@foreach($users as $user)
{{$user->id}} |
{{$user->name}} |
{{@$user->mobile}} |
|
{{date('Y-m-d',strtotime($user->created_at))}} |
@endforeach
@else
{{__('No Data')}} |
@endif
{{__('ID')}} |
{{__('username')}} |
{{__('phone')}} |
{{__('total')}} |
{{__('Created At')}} |
@if(count($latest_orders) > 0)
@foreach($latest_orders as $order)
{{$order->id}} |
{{$order->user?->name}} |
{{$order->user?->mobile}} |
{{@$order->total}} |
{{date('Y-m-d',strtotime($order->created_at))}} |
@endforeach
@else
{{__('No Data')}} |
@endif
{{__('ID')}} |
{{__('name')}} |
{{__('price')}} |
{{__('image')}} |
{{__('Created At')}} |
@if(count($latest_products) > 0)
@foreach($latest_products as $product)
{{$product->id}} |
{{$product->title}} |
{{@$product->price}} |
|
{{date('Y-m-d',strtotime($product->created_at))}} |
@endforeach
@else
{{__('No Data')}} |
@endif
{{__('ID')}} |
{{__('name')}} |
{{__('image')}} |
{{__('Created At')}} |
@if(count($latest_services) > 0)
@foreach($latest_services as $service)
{{$service->id}} |
{{$service->title}} |
|
{{date('Y-m-d',strtotime($service->created_at))}} |
@endforeach
@else
{{__('No Data')}} |
@endif
@if (isset($sales))
@endif
@endsection