@extends('backend.layouts.app') @section('title') {{ __($module_action) }} {{ __($module_title) }} @endsection @section('breadcrumbs') {{ __($module_title) }} {{ __($module_action) }} @endsection @section('content')
{{ __($module_title) }} {{ __($module_action) }} @lang(':module_name Management Dashboard', ['module_name' => Str::title($module_name)])
@include('backend.includes.show')
@if (count($items) > 0)

Products

@php $count = 0; $count1 = 0; @endphp @foreach ($items as $item) @if ($item->parent_id == 0) @php $count = $count + 1; $count1 = 0; @endphp @endif @if ($item->parent_id != 0) @php $count1=$count1+1; @endphp @endif @endforeach
# Product Name Qty Attribute
{{ $count }} {{ $item->product_name }} {{ $item->qty }} {{ get_enquiry_attribute($item->attribute_value) }}
{{ $count }}.{{ $count1 }} {{ $item->product_name }} {{ $item->qty }} {{ get_enquiry_attribute($item->attribute_value) }}
@endif @if (count($packageitems) > 0)

Packages

{{-- --}} @php $oldname = ''; @endphp @foreach ($packageitems as $item) @php $newname = $item->package_name; @endphp @if ($newname != $oldname) @endif {{-- --}} @php $oldname = $item->package_name; @endphp @endforeach
# Product Name Qty
Package Name : {{ $item->package_name }}
{{ $loop->iteration }} {{ $item->product_name }}
@endif
@endsection