सुरक्षा व्यवसायी संगठन
@php use Illuminate\Support\Str; @endphp
@if($notice)
{!! Str::limit(strip_tags($notice->content), 100, '...') !!}
@else
सूचना उपलब्ध छैन।
@endif
@if (Route::has('login'))
@auth
Dashboard
@else
Log in
|| @if (Route::has('register'))
Register
@endif @endauth
@endif
MENU
Home
@foreach ($pages as $page)
{{ $page->title }}
@endforeach
@yield('content')
@include('website.frontend.partials.footer')