@extends('layouts.app') @section('title', 'Notifications') @section('content') @php $user = auth()->user(); @endphp
@if (request()->has('archived') && request()->get('archived') == 1) @else @endif
@if($notifications->count() > 0)
@include('notifications.items')
@endif
@endsection @section('footer-script') @endsection