@extends('layouts.admin') @section('title', 'Trial #' . $trial->id) @section('page-title', 'Trial #' . $trial->id) @section('content')
Order
{{ $trial->order->order_number }}
Customer
{{ $trial->order->customer->full_name ?? '-' }}
Trial date
{{ $trial->trial_date ? $trial->trial_date->format('d M Y') : '-' }}
Status
{{ $trial->status }}
Conducted by
{{ $trial->conductedByUser->name ?? '-' }}
Alteration required
{{ $trial->alteration_required ? 'Yes' : 'No' }}
Next action
{{ $trial->next_action ?? '-' }}
@if($trial->feedback)
Feedback
{{ $trial->feedback }}
@endif @if($trial->remarks)
Remarks
{{ $trial->remarks }}
@endif
@can('edit trials')Edit@endcan View Order Back to Trials
@endsection