invoiceninja/resources/views/client/vue_list.blade.php
David Bomba 0c1fc0d904
List views (#2609)
* 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
2019-01-20 16:00:50 +11:00

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