@extends('themes.basic.layouts.app')
@section('title', @$settings->seo->title)
@section('content')
@foreach ($homeSections as $key => $homeSection)
@include('themes.basic.sections.' . str($homeSection->alias)->replace('_', '-'))
@if ($key == 0)
@elseif ($key == 3)
@endif
@endforeach
@push('styles_libs')
@endpush
@push('scripts_libs')
@endpush
@endsection