giftcon_dev/resources/views/web/partials/content-head.blade.php

9 lines
188 B
PHP

@props(['title' => '', 'desc' => null])
<div class="list-head">
<h2 class="list-title">{{ $title }}</h2>
@if($desc)
<p class="list-desc">{{ $desc }}</p>
@endif
</div>