@extends('frontend.layouts.app') @section('content') @if( isset( $menuList1 ) && count( $menuList1 ) > 0 ) {{ $menu->menu_list_heading_1 }} @foreach( $menuList1 as $menu1 ) @php $imagePath1 = asset('menu/'.$menu1->image );@endphp {{ $menu1->title }} Print @endforeach @endif @if( isset( $menuList2 ) && count( $menuList2 ) > 0 ) {{ $menu->menu_list_heading_2 }} @foreach( $menuList2 as $menu2 ) @php $imagePath2 = asset('menu/'.$menu2->image );@endphp {{ $menu2->title }} Print @endforeach @endif @if( isset( $menuList3 ) && count( $menuList3 ) > 0 ) {{ $menu->menu_list_heading_3 }} @foreach( $menuList3 as $menu3 ) @php $imagePath3 = asset('menu/'.$menu3->image );@endphp {{ $menu3->title }} Print @endforeach @endif @endsection @section('head-css') @endsection @section('scripts') @endsection