@extends('layouts/contentLayoutMaster') @section('title', 'Management AWBs') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@include('content.partial.form-message')

AWBs List

input("arrival_hk_date")) }}"/>
input("delivery_date")) }}"/>
input("book_date")) }}"/>
@php $vendors = \App\Models\Vendor::orderBy('name', 'asc')->get(); if($vendors->count()){ @endphp @php } @endphp
@php $customers = \App\Models\Customer::orderBy('name', 'asc')->get(); if($customers->count()){ @endphp @php } @endphp
input("search")) }}"/>
@php $statuses = ['Not Delivered', 'Delivered']; $options = request()->input("status") ? request()->input("status") : ['Not Delivered']; if(!empty($statuses)){ @endphp @php } @endphp
Reset
@can('Financial - AWBs - Add') Add New AWB @endcan Export Excel

@if($awbs->total()) Records {{ ( $awbs->currentPage() - 1 ) * $awbs->perPage() + 1 }} to {{ ( $awbs->currentPage() - 1 ) * $awbs->perPage() + $awbs->count() }} from {{ $awbs->total() }} Records @else No Record @endif

@foreach( $awbs as $awb ) @endforeach
ID Vendor VPOs Description Carrier Track# Arrival HK Date Reference Book Date Customers CPOs Way Bill Status Delivery Date Action
{{ $awb->id }} {{ $awb->vendor->name }} @php echo Str::replace("|*|", "

", $awb->vendor_pos); @endphp
{{ $awb->description }} {{ $awb->carrier }} @can('Financial - AWBs - Parts') @endcan {{ $awb->track_number }} @can('Financial - AWBs - Parts') @endcan {{ $awb->arrival_hk_date }} {{ $awb->reference }} {{ $awb->book_date }} @php echo Str::replace("|*|", "

", $awb->customers); @endphp
@php echo Str::replace("|*|", "

", $awb->customer_pos); @endphp
{{ $awb->way_bill }} {{ $awb->status }} {{ $awb->delivery_date }}
{{ $awbs->appends($_REQUEST)->fragment('top-list')->links('vendor.pagination.bootstrap-5') }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection