{{--
  • {{ __('Admin') }}
  • {{ __('Announcements') }}
  • --}}

    User Announcements

    Active Announcements

    @foreach($user_announcements_active as $announcement)
    @if($announcement->count() > 0)
    @if(isset($announcement->user->id)) User: {{ $announcement->user->fullname }}
    @else NO USER! @endif
    {{ $announcement->announcement }}
    Active? [@if($announcement->is_active) Yes @else No @endif]
    @if($announcement->confirmed_at != "") Confirmed? [ Yes ] ({{date('d M h:i A', strtotime($announcement->confirmed_at))}}) @else Confirmed? [ No ] @endif
    Edit Delete @else None @endif
    @endforeach

    Inactive Announcements

    @foreach($user_announcements_inactive as $announcement)
    @if($announcement->count() > 0)
    @if(isset($announcement->user->id)) User: {{ $announcement->user->fullname }}
    @else NO USER! @endif
    {{ $announcement->announcement }}
    Active? [@if($announcement->is_active) Yes @else No @endif]
    @if($announcement->confirmed_at != "") Confirmed? [ Yes ] ({{date('d M h:i A', strtotime($announcement->confirmed_at))}}) @else Confirmed? [ No ] @endif
    Edit Delete @else None @endif
    @endforeach