Advertisement
arlendafitranto

budget-plan-actual.blade

Sep 28th, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.00 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <title>Document</title>
  9.     <style>
  10.         body {
  11.             font-family: Arial, Helvetica, sans-serif;
  12.             padding: 0 10px;
  13.         }
  14.  
  15.         h1 {
  16.             font-size: 26px;
  17.         }
  18.  
  19.         .gnams {
  20.             border-collapse: collapse;
  21.             width: 100%;
  22.             margin-top: 20px;
  23.         }
  24.  
  25.         .gnams td,
  26.         .gnams th {
  27.             border: 1px solid #ddd;
  28.            padding: 8px;
  29.             font-size: 14px;
  30.         }
  31.  
  32.         .gnams th {
  33.             width: 5px;
  34.         }
  35.  
  36.         .gnams tr:nth-child(even) {
  37.             background-color: #f2f2f2;
  38.        }
  39.  
  40.         .gnams tr:hover {
  41.             background-color: #ddd;
  42.        }
  43.  
  44.         .gnams th {
  45.             padding-top: 5px;
  46.             padding-bottom: 5px;
  47.             text-align: center;
  48.             background-color: #04AA6D;
  49.            color: white;
  50.         }
  51.  
  52.         .text-right {
  53.             text-align: right;
  54.         }
  55.  
  56.         .text-center {
  57.             text-align: center;
  58.         }
  59.  
  60.         .text-left {
  61.             text-align: left;
  62.         }
  63.  
  64.         .text-danger {
  65.             color: red;
  66.         }
  67.     </style>
  68. </head>
  69.  
  70. <body>
  71.     @if (count($budget_group_by_cc) > 0)
  72.     @foreach ($budget_group_by_cc as $key => $budget_by_cc)
  73.     <table class="gnams">
  74.         <thead>
  75.             <tr>
  76.                 <th colspan="8" style="text-align: left;">
  77.                     Cost Center: {{ $key . ' - ' . date('F', strtotime('-1 month')) . ' ' . date('Y') }}
  78.                     &nbsp;(Total Budget: {{ number_format($total_budget[$key]['total_amount'], 0, ',', '.') }} --
  79.                     Total Forecast: {{ number_format($total_forecast[$key]['forecast_total'], 0, ',', '.') }})
  80.                     <span
  81.                         class="{{ $total_budget[$key]['total_amount'] - $total_forecast[$key]['forecast_total'] < 0 ? 'text-danger' : '' }}">
  82.                         &nbsp; Balance:
  83.                         {{ number_format($total_budget[$key]['total_amount'] - $total_forecast[$key]['forecast_total'])
  84.                         }}
  85.                     </span>
  86.                 </th>
  87.             </tr>
  88.             <tr>
  89.                 <th>#</th>
  90.                <th>Exp. No.</th>
  91.                 <th>Theme</th>
  92.                 <th class="text-right">Budget </th>
  93.                 <th class="text-right">Plan - {{ date('M', strtotime('-1 month')) }}</th>
  94.                 <th class="text-right">Actual - {{ date('M', strtotime('-1 month')) }}</th>
  95.                 <th class="text-right">Balance</th>
  96.                 <th class="text-right">Balance - {{ date('M', strtotime('-1 month')) }}</th>
  97.             </tr>
  98.         </thead>
  99.         <tbody>
  100.             @foreach ($budget_by_cc as $key => $budget)
  101.             <tr>
  102.                 <td class="text-center">{{ $key + 1 }}</td>
  103.                 <td>{{ $budget['exp_no'] }}</td>
  104.                 <td>{{ $budget['theme'] }}</td>
  105.                 <td class="text-right">{{ number_format($budget['plan_end_year'], 2, ',', '.') }}</td>
  106.                 <td class="text-right">{{ number_format($budget['plan_this_month'], 2, ',', '.') }}</td>
  107.                 <td class="text-right">{{ number_format($budget['act'], 2, ',', '.') }}</td>
  108.                 <td class="text-right {{ $budget['plan_end_year'] - $budget['act'] < 0 ? 'text-danger' : '' }}">
  109.                     {{ number_format($budget['plan_end_year'] - $budget['act'], 2, ',', '.') }}
  110.                 </td>
  111.                 <td class="text-right {{ $budget['plan_this_month'] - $budget['act'] < 0 ? 'text-danger' : '' }}">
  112.                     {{ number_format($budget['plan_this_month'] - $budget['act'], 2, ',', '.') }}
  113.                 </td>
  114.             </tr>
  115.             @endforeach
  116.         </tbody>
  117.     </table>
  118.     @endforeach
  119.     @endif
  120.  
  121. </body>
  122.  
  123. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement