changed content in invoice transit and table column structure
This commit is contained in:
@@ -78,26 +78,27 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>Plant Code</th>
|
||||
<th>Receiving Plant Code</th>
|
||||
<th>Plant Name</th>
|
||||
<th>Receiving Plant Name</th>
|
||||
<th>Invoice Number</th>
|
||||
<th>Transport Name</th>
|
||||
<th>LR_BL_AW Date</th>
|
||||
<th>LR Number</th>
|
||||
<th>LR Date</th>
|
||||
<th>Transit Days</th>
|
||||
<th>Status</th>
|
||||
<th>Pending Days</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach ($tableData as $row)
|
||||
<tr>
|
||||
<td>{{ $row['no'] }}</td>
|
||||
<td>{{ $row['plant'] }}</td>
|
||||
<td>{{ $row['receiving_plant'] }}</td>
|
||||
<td>{{ $row['plant'] }}</td>
|
||||
<td>{{ $row['receiving_plant_name'] }}</td>
|
||||
<td>{{ $row['invoice_number'] }}</td>
|
||||
<td class="td-left">{{ $row['transport_name'] }}</td>
|
||||
|
||||
<td>{{ $row['lr_bl_aw_number'] }}</td>
|
||||
<td>
|
||||
@if(!empty($row['lr_bl_aw_date']) && $row['lr_bl_aw_date'] != '-')
|
||||
{{ \Carbon\Carbon::parse($row['lr_bl_aw_date'])->format('d-M-Y') }}
|
||||
@@ -105,6 +106,7 @@
|
||||
-
|
||||
@endif
|
||||
</td>
|
||||
|
||||
{{-- <td>{{ $row['lr_bl_aw_date'] }}</td> --}}
|
||||
<td>{{ $row['transit_days'] }}</td>
|
||||
<td>{{ $row['status'] }}</td>
|
||||
|
||||
Reference in New Issue
Block a user