mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 07:27:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			698 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			698 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('layouts.master', ['header' => $header])
 | 
						|
 | 
						|
@section('head')
 | 
						|
 | 
						|
@endsection
 | 
						|
 | 
						|
@section('body')
 | 
						|
    @parent
 | 
						|
    <main class="main" >
 | 
						|
 | 
						|
        <div class="container-fluid" id="client_list">
 | 
						|
            <vue-toastr ref="toastr"></vue-toastr>
 | 
						|
            
 | 
						|
            <list-actions :listaction="{{ $listaction }}" :per_page_prop="{{ $datatable['per_page'] }}"></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 |