{{-- ? To set: * required: title_primary as string html option: title_secondary as string html in okis color btn_back as string href link / route btn_title_attr as string title Tag from Back button without_news_card as boolean if true => news card hide ? To implement in Blade: * @includeIf('layouts.components.container_header', [ 'title_primary' => 'Paketmanager', 'title_secondary' => '', 'btn_back' => route('home'), 'btn_title_attr' => "zurück zum Dashboard", ]) --}} @if (isset($title_primary) && !empty($title_primary))

@if (isset($btn_back) && !empty($btn_back)) @includeIf('layouts.components.icon', [ 'name' => 'left-chevron', 'width' => '30', ]) @endif {!! $title_primary !!} {!! $title_secondary ?? '' !!}

@endif