@extends('layouts.app') @section('title', 'Job Details: ' . $job->job_no) @section('content')

Job Details

Full details copied from confirmed quotation.

arrow_back Back to List

{{ $job->job_name ?: 'Untitled Job' }}

{{ $job->job_no }} {{ $job->booking_no }} {{ $job->booking_date ? date('d M Y', strtotime($job->booking_date)) : '-' }}
{{ $job->job_status }}

Customer & Specs

Customer
{{ $job->customer_name ?: '-' }}
Mobile
{{ $job->mobile ?: '-' }}
Address
{{ $job->address ?: '-' }}
Category
{{ $job->category_name ?: '-' }}
Paper Size
{{ $job->paper_size ?: '-' }}
GSM
{{ $job->paper_gsm ?: '-' }}
Print Type
{{ $job->print_type ?: '-' }}
Lamination
{{ $job->lamination ?: '-' }}
Lamination Side
{{ $job->lamination_side ?: '-' }}
@if($job->carbon_copy || $job->bill_binding)
Carbon Copy
{{ $job->carbon_copy ?: '-' }}
Binding
{{ $job->bill_binding ?: '-' }}
@endif
Quantity
{{ $job->quantity }}
Amount
₹{{ number_format($job->grand_total, 2) }}
@endsection