mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Wire up Create Entity Button to create route * Refactor permissions, we must also ensure the user company id and entity id matches at the Gate:: * Add translations for Status filters * Bug fix for initial list view not displaying * Apply actions to menu for list items * Wire up list view actions, individual * Place permission filters on datatable lists
34 lines
724 B
PHP
34 lines
724 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 }}"></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 |