mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 23:37:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <tr>
 | |
|     @if ($multiUser)
 | |
|         <td>{{ trans('texts.user') }}</td>
 | |
|     @endif
 | |
|     <td>{{ trans('texts.product') }}</td>
 | |
|     <td>{{ trans('texts.notes') }}</td>
 | |
|     <td>{{ trans('texts.cost') }}</td>
 | |
| </tr>
 | |
| 
 | |
| @foreach ($products as $product)
 | |
|     <tr>
 | |
|         @if ($multiUser)
 | |
|             <td>{{ $product->present()->user }}</td>
 | |
|         @endif
 | |
|         <td>{{ $product->product_key }}</td>
 | |
|         <td>{{ $product->notes }}</td>
 | |
|         <td>{{ $product->cost }}</td>
 | |
|     </tr>
 | |
| @endforeach
 |