@extends('frontend::layouts.master') @section('content') @livewire('frontend::hero-slider', ['banner' => $banner]) @if (!empty($about))
{!! $about['detail'] ?? '' !!}
 
 
@endif @if (!empty($why_choose_us['detail']))
{!! $why_choose_us['detail'] ?? '' !!}
@endif @if (!empty($product_categories))
@foreach ($product_categories as $i => $item)
{!! $item['name'] ?? '' !!}
@endforeach

@lang('frontend::text.label.category') @lang('frontend::text.label.category_desc')

    @foreach ($product_categories as $i => $item)
  • {!! $item['name'] ?? '' !!}
  • @endforeach

@lang('frontend::text.label.category_desc_detail')

@endif @if (!empty($sample))
@lang('frontend::text.label.sample')

@lang('frontend::text.label.sample_desc')

@lang('frontend::text.btn.view_all')
@endif @if (!empty($process))
{!! $process['detail'] ?? '' !!}
@endif @endsection