mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
14577fdfd0
* Remove breadcrumbs * remove config
32 lines
698 B
PHP
32 lines
698 B
PHP
@extends('layouts.master', ['header' => $header])
|
|
|
|
@section('head')
|
|
|
|
@endsection
|
|
|
|
@section('body')
|
|
@parent
|
|
<main class="main" >
|
|
|
|
<div class="container-fluid" id="client_list">
|
|
<vue-toastr ref="toastr"></vue-toastr>
|
|
|
|
<list-actions :listaction="{{ $listaction }}" :per_page_prop="{{ $datatable['per_page'] }}"></list-actions>
|
|
|
|
<div style="background: #fff;">
|
|
|
|
<client-list :datatable="{{ $datatable }}"></client-list>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<script defer src=" {{ mix('/js/client_list.min.js') }}"></script>
|
|
|
|
@endsection
|
|
|
|
@section('footer')
|
|
|
|
@endsection |