@extends('layouts.admin') @section('content')
Back

My Orders

{{$order->user->first_name}}
{{$order->lname}}
{{$order->email}}
{{$order->phoneno}}
{{$order->address1}}
{{$order->address2}}
{{$order->city}}
{{$order->state}}
{{$order->country}}
{{$order->pincode}}
{{-- @foreach ($order->carts as $item) @endforeach --}}
Name Qunatity Price Image
{{$item->products->name}} {{$item->qty}} {{$item->price}}

Grand Total : RS {{ $order->total_price }}

@csrf @method('PUT')
@endsection {{--
@csrf @method('PUT')
--}}