@extends('admin.layouts.master') @section('title', 'Push Order') @section('content')
@include('admin.includes.msg')

Push Order

@if(isset($_GET['user']) & !empty($_GET['user']))
@endif
@if(isset($_GET['user']) & !empty($_GET['user']))
Name : {{$current_user->name}}
Email : {{$current_user->email}}
Phone No. : {{$current_user->phone}}
Address : {{$current_user->address}}
@endif
@if(isset($_GET['user']) & !empty($_GET['user']))
Retailer Name : {{$current_retailer->name}}
Email : {{$current_retailer->email}}
Phone No. : {{$current_retailer->phone}}
Address : {{$current_retailer->address}}
@endif
@if(isset($_GET['user']) & !empty($_GET['user']))
{{----}}
Name Price Quantity
@php $x=1; @endphp @foreach($category as $c) @if(count($c['product'])>0) @foreach($c['product'] as $p) @if($p->stock>0) @endif @endforeach @endif @endforeach @foreach($otherproduct as $p) @if($p->stock > 0) @endif @endforeach
{{$c->categoryName}}
{{$p->productName}}
{{$p->base_pack_code}}
₹{{ number_format($p->price,2)}}{{ number_format($p->compareAtPrice,2)}}
OTHER
{{$p->productName}}
{{$p->base_pack_code}}
₹{{ number_format($p->price,2)}}{{ number_format($p->compareAtPrice,2)}}
@endif
{{-- --}} @endsection