@extends('layouts.stores_dashboard_layout') @section('title') {{trans('stores_dashboard.new_orders')}} @endsection @section('content')
{{trans('stores_dashboard.recent_orders')}}

{{trans('stores_dashboard.recent_orders_info')}}

@foreach($orders as $order) @endforeach
{{trans('stores_dashboard.number')}} {{trans('stores_dashboard.order_number')}} {{trans('stores_dashboard.name')}} {{trans('stores_dashboard.deliver_address')}} {{trans('stores_dashboard.total_price')}} {{trans('stores_dashboard.created_at')}} {{trans('stores_dashboard.deliver_time')}}
{{ $i++ }} {{$order->citc_referenceCode}} {{$order->user?->name}} {{$order->receive_address}} {{$order->total_price}} {{date('d-m-Y', strtotime($order->created_at))}} {{$order->deliver_time}}{{trans('stores_dashboard.hour')}}
@endsection @section('scripts') @endsection