76 lines
5.0 KiB (Stored with Git LFS)
PHP
76 lines
5.0 KiB (Stored with Git LFS)
PHP
@extends('delivery_boys.layouts.app')
|
|
|
|
@section('panel_content')
|
|
<div class="card shadow-none rounded-0 border">
|
|
<div class="card-header border-bottom-0">
|
|
<h5 class="mb-0 fs-20 fw-700 text-dark">{{ translate('Completed Delivery History') }}</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<table class="table aiz-table mb-0">
|
|
<thead class="text-gray fs-12">
|
|
<tr>
|
|
<th class="pl-0">{{ translate('Code')}}</th>
|
|
<th>{{ translate('Date')}}</th>
|
|
<th>{{ translate('Amount')}}</th>
|
|
<th data-breakpoints="lg">{{ translate('Delivery Status')}}</th>
|
|
<th data-breakpoints="lg">{{ translate('Payment Status')}}</th>
|
|
<th class="text-right pr-0">{{ translate('Options')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="fs-14">
|
|
@foreach ($completed_deliveries as $key => $delivery)
|
|
@if(optional($delivery->order)->code)
|
|
<tr>
|
|
<!-- Code -->
|
|
<td class="pl-0" style="vertical-align: middle;">
|
|
<a href="{{route('delivery-boy.order-detail', encrypt($delivery->order->id))}}">{{ $delivery->order->code }}</a>
|
|
</td>
|
|
<!-- Date -->
|
|
<td class="text-secondary" style="vertical-align: middle;">
|
|
{{ date('d-m-Y h:i A', strtotime($delivery->created_at)) }}
|
|
</td>
|
|
<!-- Amount -->
|
|
<td class="fw-700" style="vertical-align: middle;">
|
|
{{ single_price($delivery->collection) }}
|
|
</td>
|
|
<!-- Delivery Status -->
|
|
<td class="fw-700" style="vertical-align: middle;">
|
|
{{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }}
|
|
</td>
|
|
<!-- Payment Status -->
|
|
<td style="vertical-align: middle;">
|
|
@if ($delivery->order->payment_status == 'paid')
|
|
<span class="badge badge-inline badge-success p-3 fs-12" style="border-radius: 25px; min-width: 80px !important;">{{translate('Paid')}}</span>
|
|
@else
|
|
<span class="badge badge-inline badge-danger p-3 fs-12" style="border-radius: 25px; min-width: 80px !important;">{{translate('Unpaid')}}</span>
|
|
@endif
|
|
</td>
|
|
<!-- Options -->
|
|
<td class="text-right pr-0" style="vertical-align: middle;">
|
|
<a href="{{route('delivery-boy.order-detail', encrypt($delivery->order->id))}}" class="btn btn-soft-info btn-icon btn-circle btn-sm hov-svg-white" title="{{ translate('Order Details') }}">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" viewBox="0 0 12 10">
|
|
<g id="Group_24807" data-name="Group 24807" transform="translate(-1339 -422)">
|
|
<rect id="Rectangle_18658" data-name="Rectangle 18658" width="12" height="1" transform="translate(1339 422)" fill="#3490f3"/>
|
|
<rect id="Rectangle_18659" data-name="Rectangle 18659" width="12" height="1" transform="translate(1339 425)" fill="#3490f3"/>
|
|
<rect id="Rectangle_18660" data-name="Rectangle 18660" width="12" height="1" transform="translate(1339 428)" fill="#3490f3"/>
|
|
<rect id="Rectangle_18661" data-name="Rectangle 18661" width="12" height="1" transform="translate(1339 431)" fill="#3490f3"/>
|
|
</g>
|
|
</svg>
|
|
</a>
|
|
<a class="btn btn-soft-warning btn-icon btn-circle btn-sm" href="{{ route('invoice.download', $delivery->order->id) }}" title="{{ translate('Download Invoice') }}">
|
|
<i class="las la-download"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<!-- Pagination -->
|
|
<div class="aiz-pagination mt-2">
|
|
{{ $completed_deliveries->appends(request()->input())->links() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|