mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-25 15:45:29 -05:00
* Fix for comparing delete contacts change diffKeys to diff() * Client create * Client Settings * Working on localization * Refactor DataTables * protyping blade vs pure vue * Rebuild test module * Generic notes module * Small Client Notes Module * Tests for TabMenu Trait * implements tab pills in client screen * Integrate Modules
32 lines
839 B
PHP
32 lines
839 B
PHP
|
|
@section('head')
|
|
@parent
|
|
<link rel="stylesheet" href="//cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css">
|
|
<script src="//cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js"></script>
|
|
<script src="//cdn.datatables.net/1.10.18/js/dataTables.bootstrap4.min.js"></script>
|
|
@endsection
|
|
|
|
@section('body')
|
|
@parent
|
|
<main class="main" >
|
|
<!-- Breadcrumb-->
|
|
{{ Breadcrumbs::render('clients') }}
|
|
|
|
<div class="container-fluid">
|
|
<div id="ui-view">
|
|
<div class="animated fadeIn">
|
|
<div class="row col-lg-12 card">
|
|
|
|
{!! $html->table() !!}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
@endsection
|
|
|
|
@section('footer')
|
|
@parent
|
|
{!! $html->scripts() !!}
|
|
@endsection |