mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Wired up Bulk Archive / Delete / Restore button with reactivity on checkbox actions * Working on POSTing bulk actions * Working on Filtering by status * Add Action Entity * Implement Vuex for state management * Implement Vuex storage & list view bulk actions * Clean up console logs * Configure entity list views server side
33 lines
661 B
PHP
33 lines
661 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">
|
|
|
|
<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 |