@extends('Layouts.web_master') @include('elements.web.hero') @section('content') @include('WEB.clients') @foreach($frontMenu as $frontData) @if(strtolower($frontData->menu_name) == 'home') @php continue; @endphp @endif

{{ strtoupper($frontData->menu_name) }}

@if($frontData->menu_title)

{!! $frontData->menu_title !!}

@endif
@php $name = strtolower($frontData->menu_name) @endphp @if($name == 'about') @include('WEB.about') @endif @if($name == 'services') @include('WEB.services') @endif @if($name == 'product') @include('WEB.product') @endif {{-- @if($name == 'portfolio') @include('WEB.portfolio') @endif @if($name == 'team') @include('WEB.team')