@extends('website.layouts.app') @section('content')
@foreach($sections as $section)
{!! $section->description !!}
@endforeach @if(count($products) > 0)
@foreach($products as $product)
{{ $product->description }}
@endforeach
@endif
@endsection