mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
34 lines
770 B
PHP
34 lines
770 B
PHP
@extends('layouts.master', ['header' => $header])
|
|
|
|
@section('head')
|
|
|
|
@endsection
|
|
|
|
@section('body')
|
|
@parent
|
|
<main class="main" >
|
|
<!-- Breadcrumb-->
|
|
{{ Breadcrumbs::render('clients') }}
|
|
|
|
<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 |