mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
12 lines
639 B
PHP
12 lines
639 B
PHP
@extends('layouts.base_portal')
|
|
@section('inner_content')
|
|
<div class="row">
|
|
<div class="col-5">
|
|
<list-component section="warehouseListSection" :endpoint="route('api.packing_list.list')" :options="{packing_list_type: 1, packing_list_status: 2, per_page: 20, order_by: {column: 'arrival_date', DESC: true}, with_arrival_date: true}">
|
|
<template slot="list" slot-scope="{data}">
|
|
<parcel-component v-for="packages in data.packages" :data="packages" :key="packages.id"></parcel-component>
|
|
</template>
|
|
</list-component>
|
|
</div>
|
|
</div>
|
|
@endsection |