@php $hotelName = setting('hotel_name', 'Laravel'); @endphp @push('title', auth()->user() ? auth()->user()->username : __('Help Center'))
@foreach($categories->where('small_box', false) as $category) {{ str_replace(':hotel', $hotelName, $category->name) }}
{!! str_replace(':hotel', $hotelName, $category->content) !!}
@endforeach
@foreach($categories->where('small_box', true) as $category) {{ str_replace(':hotel', $hotelName, $category->name) }}
{!! str_replace(':hotel', $hotelName, $category->content) !!}
@endforeach