@extends('frontend::layouts.master') @section('content')
@if (!empty($about_us['detail']))
@if (!empty($about_us['image']))
{!! $about_us['detail'] ?? '' !!}
@else {!! $about_us['detail'] ?? '' !!} @endif
@endif @if (!empty($newses['list']))
@foreach ($newses['list'] as $index => $news)
image news

{{ $news['name'] ?? '' }}

{{ $news['desc'] ?? '' }}

{{ str_date($news['publish_at'], 'd m Y') }}

@endforeach
@if (!empty($news_link['url'])) @endif
@else
@endif @if (!empty($products['list']))

{{ __('frontend::lang.index.all_products') }}

@foreach ($products['list'] as $index => $product)
image product

{{ $product['name'] ?? '' }}

{{ $product['desc'] ?? '' }}
@endforeach
@if (!empty($product_link['url'])) @endif
@endif
@endsection