@extends('layouts.admin') @section('title', 'View Order Details') @section('content')
@csrf @method('PATCH')

Status

@error('status')
{{ $message }}
@enderror
@csrf @method('PATCH')

Customer Details

Name

{{ $order->customer->name }}


Location

{{ $order->address->house }}, {{ $order->address->road }} {{ $order->address->city }}, {{ $order->address->pin }}


Contact

{{ $order->address->phone }}

Products

@foreach($order->products as $product) @endforeach
Product 1 {{ $product->product->name }}
@endsection @push('style') @endpush