@extends('layouts.admin') @section('title', 'Alteration') @section('page-title', 'Alteration #' . $alteration->id) @section('content')
Order
{{ $alteration->order->order_number }}
Customer
{{ $alteration->order->customer->full_name ?? '-' }}
Requested on
{{ $alteration->requested_on ? $alteration->requested_on->format('d M Y') : '-' }}
Revised delivery
{{ $alteration->revised_delivery_date ? $alteration->revised_delivery_date->format('d M Y') : '-' }}
Status
{{ $alteration->status }}
Tailor
{{ $alteration->tailor->name ?? '-' }}
Sequence
{{ $alteration->sequence }}
@if($alteration->notes)
Notes
{{ $alteration->notes }}
@endif
@can('edit alterations')Edit@endcan View Order Back to Alterations
@endsection