@extends('layouts.main') @section('content')
Shop referel no : #5876432{{$shop->id}}
Created Date: {{\Carbon\Carbon::parse($shop->created_at)->format('d-m-Y H:i')}}
Status: ( {{$shop->active == 1 ? 'Active' : 'Inactive'}} - {{$shop->opened == 1 ? 'Opened' : "Closed"}} )

{{$shop->name}}

{{$shop->email}}
{{$shop->mobile}}

Shop Address
{{$shop->name}}
{{$shop->street}}, {{$shop->area}},
{{$shop->city}}

Shop Products

@forelse ($product_dtl as $item) @empty @endforelse
Product Id Product Name Add Item
{{$item->id}} {{$item->name}}
No Items

Selected Products

@forelse ($products as $item) @empty @endforelse
Product Id Product Name Item
{{$item->id}} {{$item->name}} 1
No Items



@push('scripts') @endpush @endsection