mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-21 13:34:08 +00:00
17 lines
760 B
PHP
17 lines
760 B
PHP
@extends('layouts.base_portal')
|
|
@section('inner_content')
|
|
<div class="row m-1 mt-3 mb-3 hide">
|
|
<div class="col col-10 m-r-5">
|
|
<div class="row border p-1">Search</div>
|
|
</div>
|
|
<div class="col col m-l-5">
|
|
<div class="row border p-1">Filter</div>
|
|
</div>
|
|
</div>
|
|
<!-- <list-component section="containerListSection" :endpoint="route('api.packing_list.container.list')"> -->
|
|
<list-component section="containerListSection" :endpoint="route('api.packing_list.container.list')" :options="{'per_page': 5, 'with_packing_lists': true, order_by: {column: 'created_at', DESC: true}}">
|
|
<template slot="list" slot-scope="{data}">
|
|
<container-component :data="data"></container-component>
|
|
</template>
|
|
</list-component>
|
|
@endsection |