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