mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 13:41:09 -04:00 
			
		
		
		
	Merge branch 'refactor-report-pdfs' into 'master'
Refactor report pdfs See merge request mohit.panjvani/crater-web!233
This commit is contained in:
		| @ -2,35 +2,24 @@ | ||||
| <html lang="en"> | ||||
| <head> | ||||
|     <title>Expenses Report</title> | ||||
|     {{-- <link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet"> --}} | ||||
|     <style type="text/css"> | ||||
|         body { | ||||
|             font-family: "DejaVu Sans"; | ||||
|         } | ||||
|  | ||||
|         /* html { | ||||
|             margin: 0px; | ||||
|             padding: 0px; | ||||
|         } */ | ||||
|  | ||||
|         table { | ||||
|             border-collapse: collapse; | ||||
|         } | ||||
|  | ||||
|         .main-container { | ||||
|             /* padding: 30px 60px; */ | ||||
|         } | ||||
|  | ||||
|         .sub-container{ | ||||
|             padding: 0px 20px; | ||||
|         } | ||||
|  | ||||
|         .header { | ||||
|         .report-header { | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 24px; | ||||
|             color: #5851D8; | ||||
| @ -41,7 +30,6 @@ | ||||
|         } | ||||
|  | ||||
|         .heading-date-range { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 15px; | ||||
|             color: #A5ACC1; | ||||
| @ -52,10 +40,8 @@ | ||||
|         } | ||||
|  | ||||
|         .sub-heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             /* line-height: 21px; */ | ||||
|             color: #595959; | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
| @ -65,8 +51,6 @@ | ||||
|         .expenses-title { | ||||
|             margin-top: 60px; | ||||
|             padding-left: 3px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
| @ -84,18 +68,14 @@ | ||||
|         .expense-title { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .expense-money { | ||||
|         .expense-amount { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             text-align: right; | ||||
| @ -118,7 +98,6 @@ | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -126,7 +105,7 @@ | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .total-expense-table { | ||||
|         .report-footer { | ||||
|             width: 100%; | ||||
|             margin-top: 40px; | ||||
|             padding: 15px 20px; | ||||
| @ -134,22 +113,20 @@ | ||||
|             box-sizing: border-box; | ||||
|         } | ||||
|  | ||||
|         .total-expense-title { | ||||
|         .report-footer-label { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: left; | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .total-expense-money { | ||||
|         .report-footer-value { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 20px; | ||||
|             line-height: 21px; | ||||
| @ -158,61 +135,59 @@ | ||||
|     </style> | ||||
| </head> | ||||
| <body> | ||||
|     <div class="main-container"> | ||||
|         <div class="sub-container"> | ||||
|             <table class="header"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="heading-text">{{ $company->name }}</p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|                 <tr> | ||||
|                     <td colspan="2"> | ||||
|                         <p class="sub-heading-text">EXPENSES REPORT</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|     <div class="sub-container"> | ||||
|         <table class="report-header"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="heading-text">{{ $company->name }}</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|                 <td colspan="2"> | ||||
|                     <p class="sub-heading-text">EXPENSES REPORT</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|         <p class="expenses-title">Expenses</p> | ||||
|         <div class="expenses-table-container"> | ||||
|             <table class="expenses-table"> | ||||
|                 @foreach ($expenseCategories as $expenseCategory) | ||||
|                     <tr> | ||||
|                         <td> | ||||
|                             <p class="expense-title"> | ||||
|                                 {{ $expenseCategory->category->name }} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                         <td> | ||||
|                             <p class="expense-amount"> | ||||
|                                 {!! format_money_pdf($expenseCategory->total_amount) !!} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                     </tr> | ||||
|                 @endforeach | ||||
|             </table> | ||||
|             <p class="expenses-title">Expenses</p> | ||||
|             <div class="expenses-table-container"> | ||||
|                 <table class="expenses-table"> | ||||
|                     @foreach ($expenseCategories as $expenseCategory) | ||||
|                         <tr> | ||||
|                             <td> | ||||
|                                 <p class="expense-title"> | ||||
|                                     {{ $expenseCategory->category->name }} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                             <td> | ||||
|                                 <p class="expense-money"> | ||||
|                                     {!! format_money_pdf($expenseCategory->total_amount) !!} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                         </tr> | ||||
|                     @endforeach | ||||
|                 </table> | ||||
|             </div> | ||||
|         </div> | ||||
|  | ||||
|         <table class="expense-total-table"> | ||||
|             <tr> | ||||
|                 <td class="expense-total-cell"> | ||||
|                     <p class="expense-total">{!! format_money_pdf($totalExpense) !!}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|         <table class="total-expense-table"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="total-expense-title">TOTAL EXPENSE</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="total-expense-money">{!! format_money_pdf($totalExpense) !!}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|     </div> | ||||
|  | ||||
|     <table class="expense-total-table"> | ||||
|         <tr> | ||||
|             <td class="expense-total-cell"> | ||||
|                 <p class="expense-total">{!! format_money_pdf($totalExpense) !!}</p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
|     <table class="report-footer"> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <p class="report-footer-label">TOTAL EXPENSE</p> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <p class="report-footer-value">{!! format_money_pdf($totalExpense) !!}</p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
| </body> | ||||
| </html> | ||||
|  | ||||
| @ -2,35 +2,24 @@ | ||||
| <html lang="en"> | ||||
| <head> | ||||
|     <title>Profit & Loss Report</title> | ||||
|     {{-- <link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet"> --}} | ||||
|     <style type="text/css"> | ||||
|         body { | ||||
|             font-family: "DejaVu Sans"; | ||||
|         } | ||||
|  | ||||
|         html { | ||||
|             margin: 0px; | ||||
|             padding: 0px; | ||||
|         } | ||||
|  | ||||
|         table { | ||||
|             border-collapse: collapse; | ||||
|         } | ||||
|  | ||||
|         .main-container { | ||||
|             padding: 30px 60px; | ||||
|         } | ||||
|  | ||||
|         .sub-container{ | ||||
|             padding: 0px 20px; | ||||
|         } | ||||
|  | ||||
|         .header { | ||||
|         .report-header { | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 24px; | ||||
|             color: #5851D8; | ||||
| @ -41,7 +30,6 @@ | ||||
|         } | ||||
|  | ||||
|         .heading-date-range { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 15px; | ||||
|             color: #A5ACC1; | ||||
| @ -52,10 +40,8 @@ | ||||
|         } | ||||
|  | ||||
|         .sub-heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             /* line-height: 21px; */ | ||||
|             color: #595959; | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
| @ -70,18 +56,15 @@ | ||||
|         .income-title { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
|             text-align: left; | ||||
|         } | ||||
|  | ||||
|         .income-money { | ||||
|         .income-amount { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -93,8 +76,6 @@ | ||||
|         .expenses-title { | ||||
|             margin-top: 20px; | ||||
|             padding-left: 3px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
| @ -112,25 +93,21 @@ | ||||
|         .expense-title { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .expense-money { | ||||
|         .expense-amount { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             text-align: right; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .expense-total-table { | ||||
|         .expense-total-indicator-table { | ||||
|             border-top: 1px solid #EAF1FB; | ||||
|             width: 100%; | ||||
|         } | ||||
| @ -146,7 +123,6 @@ | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -154,7 +130,7 @@ | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .profit-table { | ||||
|         .report-footer { | ||||
|             width: 100%; | ||||
|             margin-top: 40px; | ||||
|             padding: 15px 20px; | ||||
| @ -162,22 +138,20 @@ | ||||
|             box-sizing: border-box; | ||||
|         } | ||||
|  | ||||
|         .profit-title { | ||||
|         .report-footer-label { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: left; | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .profit-money { | ||||
|         .report-footer-value { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 20px; | ||||
|             line-height: 21px; | ||||
| @ -186,73 +160,71 @@ | ||||
|     </style> | ||||
| </head> | ||||
| <body> | ||||
|     <div class="main-container"> | ||||
|         <div class="sub-container"> | ||||
|             <table class="header"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="heading-text">{{ $company->name }}</p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|                 <tr> | ||||
|                     <td colspan="2"> | ||||
|                         <p class="sub-heading-text">PROFIT & LOSS REPORT</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> | ||||
|     <div class="sub-container"> | ||||
|         <table class="report-header"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="heading-text">{{ $company->name }}</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|                 <td colspan="2"> | ||||
|                     <p class="sub-heading-text">PROFIT & LOSS REPORT</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|  | ||||
|             <table class="income-table"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="income-title">Income</p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="income-money">{!! format_money_pdf($income) !!}</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> | ||||
|             <p class="expenses-title">Expenses</p> | ||||
|             <div class="expenses-table-container"> | ||||
|                 <table class="expenses-table"> | ||||
|                     @foreach ($expenseCategories as $expenseCategory) | ||||
|                         <tr> | ||||
|                             <td> | ||||
|                                 <p class="expense-title"> | ||||
|                                     {{ $expenseCategory->category->name }} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                             <td> | ||||
|                                 <p class="expense-money"> | ||||
|                                     {!! format_money_pdf($expenseCategory->total_amount) !!} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                         </tr> | ||||
|                     @endforeach | ||||
|         <table class="income-table"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="income-title">Income</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="income-amount">{!! format_money_pdf($income) !!}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|         <p class="expenses-title">Expenses</p> | ||||
|         <div class="expenses-table-container"> | ||||
|             <table class="expenses-table"> | ||||
|                 @foreach ($expenseCategories as $expenseCategory) | ||||
|                     <tr> | ||||
|                         <td> | ||||
|                             <p class="expense-title"> | ||||
|                                 {{ $expenseCategory->category->name }} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                         <td> | ||||
|                             <p class="expense-amount"> | ||||
|                                 {!! format_money_pdf($expenseCategory->total_amount) !!} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                     </tr> | ||||
|                 @endforeach | ||||
|  | ||||
|                 </table> | ||||
|             </div> | ||||
|             </table> | ||||
|         </div> | ||||
|  | ||||
|         <table class="expense-total-table"> | ||||
|             <tr> | ||||
|                 <td class="expense-total-cell"> | ||||
|                     <p class="expense-total">{!! format_money_pdf($totalExpense) !!}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|         <table class="profit-table"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="profit-title">NET PROFIT</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="profit-money">{!! format_money_pdf(($income-$totalExpense)) !!}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|     </div> | ||||
|  | ||||
|     <table class="expense-total-indicator-table"> | ||||
|         <tr> | ||||
|             <td class="expense-total-cell"> | ||||
|                 <p class="expense-total">{!! format_money_pdf($totalExpense) !!}</p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
|     <table class="report-footer"> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <p class="report-footer-label">NET PROFIT</p> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <p class="report-footer-value">{!! format_money_pdf(($income-$totalExpense)) !!}</p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
| </body> | ||||
| </html> | ||||
|  | ||||
| @ -2,35 +2,24 @@ | ||||
| <html lang="en"> | ||||
| <head> | ||||
|     <title>Sales Customer Report</title> | ||||
|     {{-- <link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet"> --}} | ||||
|     <style type="text/css"> | ||||
|         body { | ||||
|             font-family: "DejaVu Sans"; | ||||
|         } | ||||
|  | ||||
|         /* html { | ||||
|             margin: 0px; | ||||
|             padding: 0px; | ||||
|         } */ | ||||
|  | ||||
|          | ||||
|         table { | ||||
|             border-collapse: collapse; | ||||
|         } | ||||
|  | ||||
|         .main-container { | ||||
|             /* padding: 30px 80px; */ | ||||
|         } | ||||
|  | ||||
|         .sub-container{ | ||||
|             padding: 0px 20px; | ||||
|         } | ||||
|  | ||||
|         .header { | ||||
|         .report-header { | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 24px; | ||||
|             color: #5851D8; | ||||
| @ -41,7 +30,6 @@ | ||||
|         } | ||||
|  | ||||
|         .heading-date-range { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 15px; | ||||
|             color: #A5ACC1; | ||||
| @ -52,7 +40,6 @@ | ||||
|         } | ||||
|  | ||||
|         .sub-heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -62,90 +49,55 @@ | ||||
|             margin-top: 30px; | ||||
|         } | ||||
|  | ||||
|         .income-table { | ||||
|             margin-top: 53px; | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .income-title { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
|             text-align: left; | ||||
|         } | ||||
|  | ||||
|         .income-money { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             text-align: right; | ||||
|             color: #040405; | ||||
|             text-align: right; | ||||
|         } | ||||
|  | ||||
|         .expenses-title { | ||||
|         .sales-customer-name { | ||||
|             margin-top: 20px; | ||||
|             padding-left: 3px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .expenses-table-container { | ||||
|         .sales-table-container { | ||||
|             padding-left: 10px; | ||||
|         } | ||||
|  | ||||
|         .expenses-table { | ||||
|         .sales-table { | ||||
|             width: 100%; | ||||
|             padding-bottom: 10px; | ||||
|         } | ||||
|  | ||||
|         .expense-title { | ||||
|         .sales-information-text { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .expense-money { | ||||
|         .sales-amount { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             text-align: right; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .expense-total-table { | ||||
|         .sales-total-indicator-table { | ||||
|             border-top: 1px solid #EAF1FB; | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .expense-total-cell { | ||||
|         .sales-total-cell { | ||||
|             padding-top: 10px; | ||||
|         } | ||||
|  | ||||
|         .expense-total { | ||||
|         .sales-total-amount { | ||||
|             padding-top: 10px; | ||||
|             padding-right: 30px; | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -153,7 +105,7 @@ | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .profit-table { | ||||
|         .report-footer { | ||||
|             width: 100%; | ||||
|             margin-top: 40px; | ||||
|             padding: 15px 20px; | ||||
| @ -161,22 +113,20 @@ | ||||
|             box-sizing: border-box; | ||||
|         } | ||||
|  | ||||
|         .profit-title { | ||||
|         .report-footer-label { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: left; | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .profit-money { | ||||
|         .report-footer-value { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 20px; | ||||
|             line-height: 21px; | ||||
| @ -188,79 +138,67 @@ | ||||
|     </style> | ||||
| </head> | ||||
| <body> | ||||
|     <div class="main-container"> | ||||
|         <div class="sub-container"> | ||||
|             <table class="header"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="heading-text">{{ $company->name }}</p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|                 <tr> | ||||
|                     <td colspan="2"> | ||||
|                         <p class="sub-heading-text text-center">Sales Report: By Customer</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> | ||||
|  | ||||
|             {{-- <table class="income-table"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="income-title">Income</p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="income-money">{{ $income }}</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> --}} | ||||
|             @foreach ($customers as $customer) | ||||
|                 <p class="expenses-title">{{ $customer->name }}</p> | ||||
|                 <div class="expenses-table-container"> | ||||
|                     <table class="expenses-table"> | ||||
|                         @foreach ($customer->invoices as $invoice) | ||||
|                             <tr> | ||||
|                                 <td> | ||||
|                                     <p class="expense-title"> | ||||
|                                         {{ $invoice->formattedInvoiceDate }} ({{ $invoice->invoice_number }}) | ||||
|                                     </p> | ||||
|                                 </td> | ||||
|                                 <td> | ||||
|                                     <p class="expense-money"> | ||||
|                                         {!! format_money_pdf($invoice->total) !!} | ||||
|                                     </p> | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                         @endforeach | ||||
|                     </table> | ||||
|                 </div> | ||||
|                 <table class="expense-total-table"> | ||||
|                     <tr> | ||||
|                         <td class="expense-total-cell"> | ||||
|                             <p class="expense-total"> | ||||
|                                 {!! format_money_pdf($customer->totalAmount) !!} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                     </tr> | ||||
|                 </table> | ||||
|             @endforeach | ||||
|         </div> | ||||
|  | ||||
|  | ||||
|         <table class="profit-table"> | ||||
|     <div class="sub-container"> | ||||
|         <table class="report-header"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="profit-title">TOTAL SALES</p> | ||||
|                     <p class="heading-text">{{ $company->name }}</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="profit-money"> | ||||
|                         {!! format_money_pdf($totalAmount) !!} | ||||
|                     </p> | ||||
|                     <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|                 <td colspan="2"> | ||||
|                     <p class="sub-heading-text text-center">Sales Report: By Customer</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|  | ||||
|         @foreach ($customers as $customer) | ||||
|             <p class="sales-customer-name">{{ $customer->name }}</p> | ||||
|             <div class="sales-table-container"> | ||||
|                 <table class="sales-table"> | ||||
|                     @foreach ($customer->invoices as $invoice) | ||||
|                         <tr> | ||||
|                             <td> | ||||
|                                 <p class="sales-information-text"> | ||||
|                                     {{ $invoice->formattedInvoiceDate }} ({{ $invoice->invoice_number }}) | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                             <td> | ||||
|                                 <p class="sales-amount"> | ||||
|                                     {!! format_money_pdf($invoice->total) !!} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                         </tr> | ||||
|                     @endforeach | ||||
|                 </table> | ||||
|             </div> | ||||
|             <table class="sales-total-indicator-table"> | ||||
|                 <tr> | ||||
|                     <td class="sales-total-cell"> | ||||
|                         <p class="sales-total-amount"> | ||||
|                             {!! format_money_pdf($customer->totalAmount) !!} | ||||
|                         </p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> | ||||
|         @endforeach | ||||
|     </div> | ||||
|  | ||||
|  | ||||
|     <table class="report-footer"> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <p class="report-footer-label">TOTAL SALES</p> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <p class="report-footer-value"> | ||||
|                     {!! format_money_pdf($totalAmount) !!} | ||||
|                 </p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
| </body> | ||||
| </html> | ||||
|  | ||||
| @ -2,35 +2,24 @@ | ||||
| <html lang="en"> | ||||
| <head> | ||||
|     <title>Sales Item Report</title> | ||||
|     {{-- <link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet"> --}} | ||||
|     <style type="text/css"> | ||||
|         body { | ||||
|             font-family: "DejaVu Sans"; | ||||
|         } | ||||
|  | ||||
|         /* html { | ||||
|             margin: 0px; | ||||
|             padding: 0px; | ||||
|         } */ | ||||
|  | ||||
|          | ||||
|         table { | ||||
|             border-collapse: collapse; | ||||
|         } | ||||
|  | ||||
|         .main-container { | ||||
|             /* padding: 30px 80px; */ | ||||
|         } | ||||
|  | ||||
|         .sub-container{ | ||||
|             padding: 0px 20px; | ||||
|         } | ||||
|  | ||||
|         .header { | ||||
|         .report-header { | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 24px; | ||||
|             color: #5851D8; | ||||
| @ -41,7 +30,6 @@ | ||||
|         } | ||||
|  | ||||
|         .heading-date-range { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 15px; | ||||
|             color: #A5ACC1; | ||||
| @ -52,7 +40,6 @@ | ||||
|         } | ||||
|  | ||||
|         .sub-heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -62,90 +49,55 @@ | ||||
|             margin-top: 30px; | ||||
|         } | ||||
|  | ||||
|         .income-table { | ||||
|             margin-top: 53px; | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .income-title { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
|             text-align: left; | ||||
|         } | ||||
|  | ||||
|         .income-money { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             text-align: right; | ||||
|             color: #040405; | ||||
|             text-align: right; | ||||
|         } | ||||
|  | ||||
|         .expenses-title { | ||||
|         .sales-items-title { | ||||
|             margin-top: 20px; | ||||
|             padding-left: 3px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .expenses-table-container { | ||||
|         .items-table-container { | ||||
|             padding-left: 10px; | ||||
|         } | ||||
|  | ||||
|         .expenses-table { | ||||
|         .items-table { | ||||
|             width: 100%; | ||||
|             padding-bottom: 10px; | ||||
|         } | ||||
|  | ||||
|         .expense-title { | ||||
|         .item-title { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .expense-money { | ||||
|         .item-sales-amount { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             text-align: right; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .expense-total-table { | ||||
|         .sales-total-indicator-table { | ||||
|             border-top: 1px solid #EAF1FB; | ||||
|             width: 100%; | ||||
|         } | ||||
|  | ||||
|         .expense-total-cell { | ||||
|         .sales-total-cell { | ||||
|             padding-top: 10px; | ||||
|         } | ||||
|  | ||||
|         .expense-total { | ||||
|         .sales-total-amount { | ||||
|             padding-top: 10px; | ||||
|             padding-right: 30px; | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -153,7 +105,7 @@ | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .profit-table { | ||||
|         .report-footer { | ||||
|             width: 100%; | ||||
|             margin-top: 40px; | ||||
|             padding: 15px 20px; | ||||
| @ -161,22 +113,20 @@ | ||||
|             box-sizing: border-box; | ||||
|         } | ||||
|  | ||||
|         .profit-title { | ||||
|         .report-footer-label { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: left; | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .profit-money { | ||||
|         .report-footer-value { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 20px; | ||||
|             line-height: 21px; | ||||
| @ -188,78 +138,66 @@ | ||||
|     </style> | ||||
| </head> | ||||
| <body> | ||||
|     <div class="main-container"> | ||||
|         <div class="sub-container"> | ||||
|             <table class="header"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="heading-text">{{ $company->name }}</p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|                 <tr> | ||||
|                     <td colspan="2"> | ||||
|                         <p class="sub-heading-text text-center">Sales Report: By Item</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> | ||||
|  | ||||
|             {{-- <table class="income-table"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="income-title">Income</p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="income-money">{{ $income }}</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> --}} | ||||
|             <p class="expenses-title">Items</p> | ||||
|             @foreach ($items as $item) | ||||
|                 <div class="expenses-table-container"> | ||||
|                     <table class="expenses-table"> | ||||
|                         <tr> | ||||
|                             <td> | ||||
|                                 <p class="expense-title"> | ||||
|                                     {{ $item->name }} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                             <td> | ||||
|                                 <p class="expense-money"> | ||||
|                                     {!! format_money_pdf($item->total_amount) !!} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                         </tr> | ||||
|                     </table> | ||||
|                 </div> | ||||
|             @endforeach | ||||
|  | ||||
|                 <table class="expense-total-table"> | ||||
|     <div class="sub-container"> | ||||
|         <table class="report-header"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="heading-text">{{ $company->name }}</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="heading-date-range">{{ $from_date }} - {{ $to_date }}</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|                 <td colspan="2"> | ||||
|                     <p class="sub-heading-text text-center">Sales Report: By Item</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|          | ||||
|         <p class="sales-items-title">Items</p> | ||||
|         @foreach ($items as $item) | ||||
|             <div class="items-table-container"> | ||||
|                 <table class="items-table"> | ||||
|                     <tr> | ||||
|                         <td class="expense-total-cell"> | ||||
|                             <p class="expense-total"> | ||||
|                                 {!! format_money_pdf($totalAmount) !!} | ||||
|                         <td> | ||||
|                             <p class="item-title"> | ||||
|                                 {{ $item->name }} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                         <td> | ||||
|                             <p class="item-sales-amount"> | ||||
|                                 {!! format_money_pdf($item->total_amount) !!} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                     </tr> | ||||
|                 </table> | ||||
|         </div> | ||||
|             </div> | ||||
|         @endforeach | ||||
|  | ||||
|  | ||||
|         <table class="profit-table"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="profit-title">TOTAL SALES</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="profit-money"> | ||||
|                         {!! format_money_pdf($totalAmount) !!} | ||||
|                     </p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|             <table class="sales-total-indicator-table"> | ||||
|                 <tr> | ||||
|                     <td class="sales-total-cell"> | ||||
|                         <p class="sales-total-amount"> | ||||
|                             {!! format_money_pdf($totalAmount) !!} | ||||
|                         </p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|             </table> | ||||
|     </div> | ||||
|  | ||||
|  | ||||
|     <table class="report-footer"> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <p class="report-footer-label">TOTAL SALES</p> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <p class="report-footer-value"> | ||||
|                     {!! format_money_pdf($totalAmount) !!} | ||||
|                 </p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
| </body> | ||||
| </html> | ||||
|  | ||||
| @ -2,36 +2,25 @@ | ||||
| <html lang="en"> | ||||
| <head> | ||||
|     <title>Tax Summary Report</title> | ||||
|     {{-- <link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet"> --}} | ||||
|     <style type="text/css"> | ||||
|         body { | ||||
|             font-family: "DejaVu Sans"; | ||||
|         } | ||||
|  | ||||
|         /* html { | ||||
|             margin: 0px; | ||||
|             padding: 0px; | ||||
|         } */ | ||||
|  | ||||
|         table { | ||||
|             border-collapse: collapse; | ||||
|         } | ||||
|  | ||||
|         .main-container { | ||||
|             /* padding: 30px 60px; */ | ||||
|         } | ||||
|  | ||||
|         .sub-container{ | ||||
|             padding: 0px 20px; | ||||
|         } | ||||
|  | ||||
|         .header { | ||||
|         .report-header { | ||||
|             width: 100%; | ||||
|             margin-bottom: 60px | ||||
|         } | ||||
|  | ||||
|         .heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 24px; | ||||
|             color: #5851D8; | ||||
| @ -42,7 +31,6 @@ | ||||
|         } | ||||
|  | ||||
|         .heading-date-range { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 15px; | ||||
|             color: #A5ACC1; | ||||
| @ -53,31 +41,17 @@ | ||||
|         } | ||||
|  | ||||
|         .sub-heading-text { | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             /* line-height: 21px; */ | ||||
|             color: #595959; | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             margin-top: 6px; | ||||
|         } | ||||
|  | ||||
|         .types-title { | ||||
|         .tax-types-title { | ||||
|             margin-top: 20px; | ||||
|             padding-left: 3px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .tax-title { | ||||
|             margin-top: 60px; | ||||
|             padding-left: 3px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #040405; | ||||
| @ -95,18 +69,14 @@ | ||||
|         .tax-title { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .tax-money { | ||||
|         .tax-amount { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             font-style: normal; | ||||
|             font-weight: normal; | ||||
|             font-size: 14px; | ||||
|             line-height: 21px; | ||||
|             text-align: right; | ||||
| @ -129,7 +99,6 @@ | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
| @ -137,7 +106,7 @@ | ||||
|             color: #040405; | ||||
|         } | ||||
|  | ||||
|         .total-tax-table { | ||||
|         .report-footer { | ||||
|             width: 100%; | ||||
|             margin-top: 40px; | ||||
|             padding: 15px 20px; | ||||
| @ -145,22 +114,20 @@ | ||||
|             box-sizing: border-box; | ||||
|         } | ||||
|  | ||||
|         .total-tax-title { | ||||
|         .report-footer-label { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: left; | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             font-size: 16px; | ||||
|             line-height: 21px; | ||||
|             color: #595959; | ||||
|         } | ||||
|  | ||||
|         .total-tax-money { | ||||
|         .report-footer-value { | ||||
|             padding: 0px; | ||||
|             margin: 0px; | ||||
|             text-align: right; | ||||
|             font-style: normal; | ||||
|             font-weight: 500; | ||||
|             font-size: 20px; | ||||
|             line-height: 21px; | ||||
| @ -169,70 +136,68 @@ | ||||
|     </style> | ||||
| </head> | ||||
| <body> | ||||
|     <div class="main-container"> | ||||
|         <div class="sub-container"> | ||||
|             <table class="header"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <p class="heading-text"> | ||||
|                             {{ $company->name }} | ||||
|                         </p> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <p class="heading-date-range"> | ||||
|                             {{ $from_date }} - {{ $to_date }} | ||||
|                         </p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|                 <tr> | ||||
|                     <td colspan="2"> | ||||
|                         <p class="sub-heading-text">TAX REPORT</p> | ||||
|                     </td> | ||||
|                 </tr> | ||||
|     <div class="sub-container"> | ||||
|         <table class="report-header"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="heading-text"> | ||||
|                         {{ $company->name }} | ||||
|                     </p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="heading-date-range"> | ||||
|                         {{ $from_date }} - {{ $to_date }} | ||||
|                     </p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|                 <td colspan="2"> | ||||
|                     <p class="sub-heading-text">TAX REPORT</p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|         <p class="tax-types-title">Tax Types</p> | ||||
|         <div class="tax-table-container"> | ||||
|             <table class="tax-table"> | ||||
|                 @foreach ($taxTypes as $tax) | ||||
|                     <tr> | ||||
|                         <td> | ||||
|                             <p class="tax-title"> | ||||
|                                 {{ $tax->taxType->name }} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                         <td> | ||||
|                             <p class="tax-amount"> | ||||
|                                 {!! format_money_pdf($tax->total_tax_amount) !!} | ||||
|                             </p> | ||||
|                         </td> | ||||
|                     </tr> | ||||
|                 @endforeach | ||||
|  | ||||
|             </table> | ||||
|             <p class="types-title">Tax Types</p> | ||||
|             <div class="tax-table-container"> | ||||
|                 <table class="tax-table"> | ||||
|                     @foreach ($taxTypes as $tax) | ||||
|                         <tr> | ||||
|                             <td> | ||||
|                                 <p class="tax-title"> | ||||
|                                     {{ $tax->taxType->name }} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                             <td> | ||||
|                                 <p class="tax-money"> | ||||
|                                     {!! format_money_pdf($tax->total_tax_amount) !!} | ||||
|                                 </p> | ||||
|                             </td> | ||||
|                         </tr> | ||||
|                     @endforeach | ||||
|  | ||||
|                 </table> | ||||
|             </div> | ||||
|         </div> | ||||
|  | ||||
|         <table class="tax-total-table"> | ||||
|             <tr> | ||||
|                 <td class="tax-total-cell"> | ||||
|                     <p class="tax-total"> | ||||
|                         {!! format_money_pdf($totalTaxAmount) !!} | ||||
|                     </p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|         <table class="total-tax-table"> | ||||
|             <tr> | ||||
|                 <td> | ||||
|                     <p class="total-tax-title">TOTAL TAX</p> | ||||
|                 </td> | ||||
|                 <td> | ||||
|                     <p class="total-tax-money"> | ||||
|                         {!! format_money_pdf($totalTaxAmount) !!} | ||||
|                     </p> | ||||
|                 </td> | ||||
|             </tr> | ||||
|         </table> | ||||
|     </div> | ||||
|  | ||||
|     <table class="tax-total-table"> | ||||
|         <tr> | ||||
|             <td class="tax-total-cell"> | ||||
|                 <p class="tax-total"> | ||||
|                     {!! format_money_pdf($totalTaxAmount) !!} | ||||
|                 </p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
|     <table class="report-footer"> | ||||
|         <tr> | ||||
|             <td> | ||||
|                 <p class="report-footer-label">TOTAL TAX</p> | ||||
|             </td> | ||||
|             <td> | ||||
|                 <p class="report-footer-value"> | ||||
|                     {!! format_money_pdf($totalTaxAmount) !!} | ||||
|                 </p> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
| </body> | ||||
| </html> | ||||
|  | ||||
		Reference in New Issue
	
	Block a user