@extends('layouts.master_layout') @section('include_css') @endsection @section('content')
= Hide Filters
Categories
{{-- ----------------------- --}} @if (!empty($MenuCategorys)) @foreach ($menus as $menu) @php $menuCategoryItems = $MenuCategorys->where('menu_id', $menu->id); $dem = $menuCategoryItems->count(); @endphp

{{ $menu->name }} @if ($dem > 0) @endif

    @foreach ($menuCategoryItems as $MenuCategory) @php $categoryType = $category_types->firstWhere( 'id', $MenuCategory->category_type_id, ); $checked = request('category_type') == $categoryType->type && $menu_id == $menu->id ? 'checked' : ''; @endphp @if ($categoryType)
  • {{ number_format($categoryType->menus->where('id', $menu->id)->first()->data_count ?? 0) }}
  • @endif @endforeach
@endforeach @else @foreach ($category_types as $category_type)
type ? 'checked' : '' }} />
{{ number_format($category_type->data_count) }}
@endforeach @endif {{-- ----------------------- --}}
Applications Supported
@foreach ($menu_types as $menu_type)
type ? 'checked' : '' }} />
{{ number_format($menu_type->data_count) }}
@endforeach
{{--
@foreach ($items as $data) @include('/member/data/item_data') @endforeach
{{ $items->links('vendor.pagination.custom') }}
--}}
@foreach ($items->slice(0, 12) as $data) @include('/member/data/item_data') @endforeach
@if ($items->total() > 36)
{{ $items->links('vendor.pagination.custom') }}
@endif
{{-- ---------------- --}} {{-- ---------------- --}} @php $popupKey = auth('member')->check() ? 'popup_announcement_shown_loggedin' : 'popup_announcement_shown_guest'; @endphp @if (session('gift_month_popup')) @include('member._popup_gift_month') @elseif(!session($popupKey)) @include('member._popup_announcement') @php session()->put($popupKey, true); @endphp @endif @endsection