@extends(view:'layouts.dashboard')
@section(section:'content')
Orders
Add New Order
| ID |
user_id |
product_id |
date |
total_price |
status |
Action |
@foreach($order as $order)
| {{$order->id}} |
{{$order->user_id}} |
{{$order->product_id}} |
{{$order->date}} |
{{$order->total_price}} |
{{$order->status}} |
UPDATE
DELETTE
|