@extends('frontend.layout.app') @section('content')
| # | Item | Type | Price | Qty | Total | Action |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $item->name }}
@if($item->description)
{{ $item->description }}
@endif
|
@if ($item->item_type === 'compulsary') Compulsary @elseif ($item->item_type === 'addon') Add On @else {{ ucfirst($item->item_type) }} @endif | ₹{{ number_format($item->unit_price, 2) }} | {{ $item->quantity }} | ₹{{ number_format($item->line_total, 2) }} | @if($item->item_type === 'addon') @else Locked @endif |