@extends('layouts.app') @section('content')

{{ $order->order_number }}

@csrf
@foreach ($order->items as $item)
{{ $item->quantity }} x {{ $item->product_name }}R{{ $item->line_total }}
@endforeach
@endsection