@extends('back_office.layouts.app') @section('content')
Edit Breakdown Order
@csrf
@if ($order->accepted_at)
@endif @if ($order->arrived_at)
@endif @if ($order->started_at)
@endif @if ($order->completed_at)
@endif @if ($order->cancelled_at)
@endif
@error('order_status')

{{ $message }}

@enderror
@if ($order->status == 'cancelled' && $order->cancellation_reason)
@endif @if ($order->status == 'completed' && $order->completion_notes)
@endif @if ($order->rating)
@for ($i = 1; $i <= 5; $i++) @if ($i <= $order->rating) @else @endif @endfor ({{ $order->rating }}/5)
@endif @if ($order->review)
@endif @if ($order->car_photo_path)
@endif @if ($order->serviceProviderPayment)
@endif
Back
@endsection @section('scripts') @endsection