@extends('layouts.app') @section('page-pretitle', __('Management')) @section('page-title', __('Quotations')) @section('content')
| # | {{ __('Quotation No.') }} | {{ __('Client Name') }} | {{ __('Date') }} | {{ __('Total (RM)') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $loop->iteration + ($quotations->currentPage() - 1) * $quotations->perPage() }} | {{ $quotation->quotation_number }} | {{ $quotation->client_name ?? '-' }} | {{ \Carbon\Carbon::parse($quotation->date)->format('d/m/Y') }} | RM {{ number_format($quotation->total, 2) }} |
|
| {{ __('No quotations found.') }} | |||||