@if (is_null($nameday)) {{date('d.m.Y')}} @else {{date('d.m.Y')}} - {{trans('website.messages.todays-nameday-is')}} {{$nameday->name}} @endif

@if ($announcements->count())
    @foreach($announcements as $announcement)
  • {{$announcement->announcementTranslations->first()->announcement}}
  • @endforeach
@endif
@section('modals') @parent @stop @section('scripts') @parent $('header a.login').on('click', function (event) { $('#login').modal('show'); return false; }); @if ($errors->login->count()) $('#login').modal('show'); @endif @stop