mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 17:27:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			398 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			398 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('layouts.master', ['header' => $header])
 | 
						|
 | 
						|
@section('body')
 | 
						|
<main class="main" id="client_show">
 | 
						|
    
 | 
						|
    <vue-toastr ref="toastr"></vue-toastr>
 | 
						|
 | 
						|
    <div class="container-fluid">
 | 
						|
 | 
						|
 | 
						|
        <client-show :client="{{ $client }}" :company="{{ $company }}" :meta="{{ $meta }}"></client-show>
 | 
						|
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
</main>
 | 
						|
 | 
						|
<script defer src=" {{ mix('/js/client_show.min.js') }}"></script>
 | 
						|
 | 
						|
@endsection |