@extends('layouts.print') @push('print_styles') @endpush @section('title', 'طباعة عرض السعر ' . $quotation->id . ' - '.config('app.name')) @section('company_name', $company?->name ?? config('app.name')) @section('company_tax', ($company && $company->tax_number) ? 'الرقم الضريبي: ' . $company->tax_number : 'الرقم الضريبي: —') @section('company_logo') @if($company && $company->logo_url) @if(str_starts_with($company->logo_url, 'company/')) Logo @else Logo @endif @elseif(file_exists(public_path('images/logo.png'))) Logo @endif @endsection @section('watermark') @if($quotation->status === \App\Models\Quotation::STATUS_DRAFT) @endif @endsection @section('doc_type', 'عرض سعر') @section('document_meta') @endsection @section('document_table') @foreach($quotation->items as $idx => $line) @endforeach @endsection @section('document_footer') @if(!empty(trim($quotation->terms ?? ''))) @endif @endsection