@extends('back.layouts.app') @section('content')
@include('back.common_views.quicklinks')
Build New Quote @if(is_super_admin()) @endif
@if(session('success'))
{{ session('success') }}
@endif @foreach($quotes as $quote) @endforeach
Quote # Project Date Expiration Total Status Rep Actions
{{ $quote->quote_number }} {{ $quote->project->project_name ?? 'N/A' }} {{ $quote->date->format('M d, Y') }} @if($quote->expiration_type == 'permanent') Permanent @else {{ $quote->expiration_date->format('M d, Y') }} @endif ${{ number_format($quote->total, 2) }} @if($quote->status == 'draft') Draft @else Sent @endif {{ $quote->quoteRep->name }}
@csrf
@csrf @method('DELETE')
@if(is_super_admin()) @endif @push('beforeBodyClose') @endpush @endsection