@extends('admin.layout.template') @section('title','Order Details') @section('content')
{{-- LEFT SIDE --}}

Project Order


Project Number: {{ $order->project->project_number }}

Project Name: {{ $order->project->project_name }}

Status: {{ ucfirst($order->status) }}

Customer: {{ $order->user->name }}

Total Amount: ₹{{ number_format($order->total_amount, 2) }}


This order is linked to a project. Product details are managed inside the project module.
@endsection