@extends('homepage.layouts.master') @section('page-css') @endsection @section('page-content') @if (isset($dataWeather))

{{_t(strtolower($langCode) . '.global.homepage.sub_weather')}}

{{ $dataWeather['title'] }}

@endif
@foreach ($data as $title => $recipe)

{{_t(strtolower($langCode) . '.global.homepage.sub_' . \Str::snake($title))}}

{{_t(strtolower($langCode) . '.global.homepage.' . \Str::snake($title))}}

{{_t(strtolower($langCode) . '.global.homepage.show_more')}} +
{{ $title }}
@foreach ($recipe as $index => $product)
@include('homepage.commons.product', ['product' => $product])
@endforeach
@if (!$loop->last) @endif @endforeach
@endsection @section('page-js') @endsection