mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
43342fb98b
* Vue DataTables * Vue Datatables - Pagination * Sort Vue Tables * Working on Vue Datatables * Apply filter to vue table * Search implementation for vue datatables * Clean up
38 lines
898 B
PHP
38 lines
898 B
PHP
@extends('layouts.master', ['header' => $header])
|
|
|
|
@section('head')
|
|
|
|
@endsection
|
|
|
|
@section('body')
|
|
@parent
|
|
<main class="main" >
|
|
<!-- Breadcrumb-->
|
|
{{ Breadcrumbs::render('clients') }}
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<button class="btn btn-primary btn-lg pull-right">{{ trans('texts.new_client') }}</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="client_list" style="padding-top:20px;">
|
|
<div class="animated fadeIn">
|
|
<div class="col-md-12 card">
|
|
|
|
<client-list></client-list>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script defer src=" {{ mix('/js/client_list.min.js') }}"></script>
|
|
|
|
@endsection
|
|
|
|
@section('footer')
|
|
|
|
@endsection |