2025-03-18 19:12:59 -03:00
|
|
|
@extends('layout.base')
|
|
|
|
|
2025-03-25 19:22:38 -03:00
|
|
|
@section('page_title')
|
|
|
|
@hasSection('promotions_title')
|
|
|
|
Promoción - @yield('promotions_title')
|
|
|
|
@else
|
|
|
|
Promociones
|
|
|
|
@endif
|
|
|
|
@endsection
|
|
|
|
|
2025-03-18 19:12:59 -03:00
|
|
|
@section('page_content')
|
|
|
|
<div class="ui container">
|
|
|
|
<h2 class="ui header">
|
2025-03-25 19:22:38 -03:00
|
|
|
@hasSection('promotions_header')
|
|
|
|
Promoción - @yield('promotions_header')
|
|
|
|
@else
|
|
|
|
Promociones
|
|
|
|
@endif
|
2025-03-18 19:12:59 -03:00
|
|
|
</h2>
|
|
|
|
@yield('promotions_content')
|
|
|
|
</div>
|
|
|
|
@endsection
|