@extends('front.app.master')\ @section('title') Orders - jorayalogistics.com @endsection @section('content')
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