@extends('admin.layouts.dashboard') @section('style') @endsection @section('content')

Order Details

Order Id - {{$order->order_no}}
Transaction Id - {{$order->transaction}}
Costomer Name - {{$order->email}}
No. of Items - {{$order->items}}
@if($type == "item")

List of Items

@if(!empty($details)) @foreach($details as $item) @endforeach @else

No Items Found

@endif
Sno. Image Name Quantity
{{ $loop->iteration }}

{{$item->name}}

{{$item->qty}}

@endif @if($type == "upload")

Images and Video

@if(!empty($order->image1)) @endif @if(!empty($order->image2)) @endif @if(!empty($order->image3)) @endif @if(!empty($order->image4)) @endif @if(!empty($order->video)) @endif
Images and Video Action
your image
your image
your image
your image
@endif @if($type == "dispatch")
Delivery Details
@if(!empty($order->del_info)) @endif
Name - {{$order->del_name}}
AGE - {{$order->del_age}}
Contact Number - {{$order->del_phone}}
Information - {{$order->del_info}}
@endif
@endsection