@extends('layouts.dashboard.superadminapp') @section('title', 'Quotation') @section('styles') @endsection @section('content')

Create Purchase Quotation

Purchase Quotation Registration Form
{{ now()->format('l') }}, {{ now()->format('d') }} {{ now()->format('F') }} {{ now()->format('Y') }}
@csrf

Vendor Information

@if(isset($quotation)) @else @endif

Quotation Items

Sl.No Item Description Qty UOM Lead Time Unit Rate Discount % TDS % SGST % CGST % IGST % Amount Total
1

File Attachments

Accepted formats: PDF, JPG, PNG
@if(isset($quotation) && $quotation->files->count())
@foreach($quotation->files as $file)
{{-- Image Preview --}} @if(Str::endsWith($file->file_path, ['.jpg', '.jpeg', '.png'])) @else {{-- PDF / Other --}} 📄 {{ $file->file_name }} @endif
@endforeach
@endif
@endsection @push('scripts') @endpush