@extends('Common::admin.layout.page') @section('page')
@foreach($counters as $count)

{{ $count['count'] }}

{{ $count['title'] }}

@lang('More')
@endforeach

@lang('Latest orders')

@foreach($latest_orders as $order) @endforeach
@lang('ID') @lang('User') @lang('Offers') @lang('Created at')
{{ $order->id }} {{ $order->user->name ?? '#' }} {{ $order->offers()->count() ?? 0 }} {{ $order->created_at }}
@if(isset($devices)) @endif @endsection