mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 13:17:35 -04:00 
			
		
		
		
	* Vue DataTables * Vue Datatables - Pagination * Sort Vue Tables * Working on Vue Datatables * Apply filter to vue table * Search implementation for vue datatables * Clean up
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			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 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="ui-view" style="padding-top:20px;">
 | |
|                 <div class="animated fadeIn">
 | |
|                     <div class="col-md-12 card">
 | |
| 
 | |
|                         {!! $html->table() !!}
 | |
| 
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </main>
 | |
| @endsection
 | |
| 
 | |
| @section('footer')
 | |
|     @parent
 | |
|     {!! $html->scripts() !!}
 | |
| @endsection |