@extends('layouts.main') @section('title', 'My Order') @section('extra-css') @endsection {{-- @section('content') --}} @section('main-section') @component('components.breadcrumbs') Home My Order My Order Details @endcomponent
Name | {{ $order->user->name }} |
Address | {{ $order->billing_address }} |
City | {{ $order->billing_city }} |
Subtotal | Rs.{{ ($order->billing_subtotal) }} |
Tax | Rs.{{ ($order->billing_tax) }} |
Total | Rs.{{ ($order->billing_total) }} |