@extends('layouts.web')
@section('head-js')
@endsection
@section('css')
@endsection
@section('content')
@include('web.components.layout.banner_pages', [
'title' => 'Videos',
'style' => 'background-image: url(' . asset('images/placeholder/web/banner-sobre.webp') . ')',
])
@component('web.components.default.section', [
'class' => 'video',
'label' => 'Videos',
])
@foreach ($videos as $video)
@endforeach
@endcomponent
@endsection