@extends('admin.layouts.app') @section('content')
| Menu | Qty | Price | Extras | Total |
|---|---|---|---|---|
| {!! $item->menu->title !!} | {!! $item->qty !!} | {!! $item->price !!} | @if($item->extras) @foreach($item->extras as $extras) {!! $extras->name !!}, @endforeach @endif | {!! $item->total !!} |
| Amount | Payment For | {{--Payment Type | --}}Status |
|---|---|---|---|
| {!! $transaction->amount!!} | {!! $transaction->payment_for !!} | {{--{!! $transaction->payment_type !!} | --}}{!! $transaction->payment_status !!} |