@extends('front.app.master') @section('title') Dashboard - jorayalogistics.com @endsection @section('content')
{{--
Recent Salse
--}} {{-- Show All --}}

{{ \Carbon\Carbon::now()->format('G') < 12 ? 'Good morning' : 'Good day' }}

Hello {{ auth()->user()->name }}, welcome to your awesome dashboard!

Recent Order
{{-- Show All --}}
{{-- --}} @if(count($order)>0) @foreach ($order as $k=>$v) {{-- --}} @endforeach @endif
Date InvoiceKgAmount Status Action
{{ \Carbon\Carbon::parse($v->created_at)->format('d/m/Y') }} {{$v->order_id}}{{ $v->kg }}@if(trim($v->amount!=''))NGN {{ number_format($v->amount) }}@else pending @endif {{ $v->status }} Detail
@if(count($order)>0) {!! $order->links() !!} @endif
@endsection