123movies-seo/resources/views/components/section.blade.php

11 lines
379 B
PHP

<div class="tabbed-content mb-5">
<div class="tabbed-content__header">
<span class="title">{{ $title }}</span>
</div>
<div class="tab-content results">
@foreach ($items as $item)
@includeWhen($type == 'movie', 'components.movie_card')
@includeWhen($type == 'show', 'components.show_card')
@endforeach
</div>
</div>