22 lines
		
	
	
		
			991 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			991 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div class="overflow-x-visible mb-8">
 | |
|     <table class="w-full rp-border-collapse">
 | |
|         <tbody>
 | |
|             <tr>
 | |
|                 <td class="{{ $class->column_name_width }} w-24 ltr:text-left rtl:text-right text-black-400 uppercase font-bold">
 | |
|                     {{ trans('reports.net_profit') }}
 | |
|                 </td>
 | |
| 
 | |
|                 @foreach($class->net_profit as $profit)
 | |
|                 <td class="{{ $class->column_value_width }} ltr:text-right rtl:text-left text-black-400 font-medium text-xs print-alignment">
 | |
|                     <x-money :amount="$profit" :currency="default_currency()" convert />
 | |
|                 </td>
 | |
|                 @endforeach
 | |
| 
 | |
|                 <td class="{{ $class->column_name_width }} ltr:text-right rtl:text-left text-black-400 font-medium text-xs print-alignment">
 | |
|                     <x-money :amount="array_sum($class->net_profit)" :currency="default_currency()" convert />
 | |
|                 </td>
 | |
|             </tr>
 | |
|         </tbody>
 | |
|     </table>
 | |
| </div>
 |