@extends('layouts.dashboard.layout') @section('content')
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif

Order Detail List

@foreach($data as $key => $item) @endforeach
Product Name Price Qty Total
{{$item['name']}} $ {{$item['price']}} {{$item['quantity']}} $ {{$item['total']}}
@endsection