| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/billing/resources/views/quotations/ |
Upload File : |
<table>
<thead>
<tr>
<th>Quotation Id</th>
<th>Customer Name</th>
<th>Product Name</th>
<th>Price</th>
{{-- <th>GST%</th> --}}
<th>Qty</th>
{{-- <th>GST+Price</th> --}}
<th>Quotation Date</th>
<th>Shipping Address</th>
<th>Shipping City</th>
<th>Shipping State</th>
<th>Shipping Country</th>
<th>Shipping Pincode</th>
<th>Billing Address</th>
<th>Billing City</th>
<th>Billing State</th>
<th>Billing Country</th>
<th>Billing Pincode</th>
</tr>
</thead>
<tbody>
@php $gst = auth()->user()->gst_percent;@endphp
@forelse($quotations as $quotation)
@forelse($quotation->lineItem as $item)
<tr>
<td>#{{$quotation->id}}</td>
<td>{{$quotation->customers->firstname.' '.$quotation->customers->lastname}}</td>
<td>{{$item->product->name}}</td>
<td>{{$item->price}}</td>
{{-- <td>{{$gst}}</td> --}}
<td>{{$item->qty}}</td>
{{-- <td>{{!empty($gst)?Helper::totalPrice($gst,$item->price,1):$item->price}}</td> --}}
<td>{{$item->created_at->format('M d Y')}}</td>
<td>{{$quotation->shipping_address}}</td>
<td>{{$quotation->shipping_city}}</td>
<td>{{$quotation->shipping_state}}</td>
<td>{{$quotation->shipping_country}}</td>
<td>{{$quotation->shipping_pin}}</td>
<td>{{$quotation->billing_address}}</td>
<td>{{$quotation->billing_city}}</td>
<td>{{$quotation->billing_state}}</td>
<td>{{$quotation->billing_country}}</td>
<td>{{$quotation->billing_pin}}</td>
</tr>
@empty
@endforelse
@empty
@endforelse
</tbody>
</table>