@extends('layouts.app') @section('title','Quotations') @section('content')
@forelse($quotations as $item)@empty@endforelse
Quote #CustomerDateTotalStatus
{{ $item->number ?? '—' }}{{ $item->customer->name ?? '—' }}{{ $item->date ?? '—' }}{{ $item->total ?? '—' }}{{ $item->status ?? '—' }}
No records found
@endsection