mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
b989cf82b7
* working on js localizations * remove dependencies * Pad Hashes to at least 10 characters in length * Inject JS translations into front end dynamically * Implement VueJS for Client Edit Page with reactivity * Conditionally hide rows if not enabled (custom_value) * Split client template into smaller components * implementing ui buttons * CRUD cycles of a client * Working on Client CRUD - Integrity constraint issues
33 lines
889 B
PHP
33 lines
889 B
PHP
@extends('layouts.master', ['header' => $header])
|
|
|
|
@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 |