mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 09:37:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			456 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			456 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('portal.ninja2020.layout.app')
 | |
| @section('meta_title', ctrans('texts.credits'))
 | |
| 
 | |
| @section('header')
 | |
|     @if($errors->any())
 | |
|         <div class="alert alert-failure mb-4">
 | |
|             @foreach($errors->all() as $error)
 | |
|                 <p>{{ $error }}</p>
 | |
|             @endforeach
 | |
|         </div>
 | |
|     @endif
 | |
| @endsection
 | |
| 
 | |
| @section('body')
 | |
|     <div class="flex flex-col">
 | |
|         @livewire('credits-table', ['company' => $company])
 | |
|     </div>
 | |
| @endsection |