@extends('frontend::layouts.master') @section('title') {{ __('messages.all_notifications') }} @endsection @section('content')
{{ __('messages.all_notifications') }}
@if ($notifications->count() > 0)
@endif
@if($notifications instanceof \Illuminate\Pagination\LengthAwarePaginator && $notifications->total() > 0)
{{ __('messages.showing') }} {{ $notifications->firstItem() ?? 0 }} {{ __('messages.to') }} {{ $notifications->lastItem() ?? 0 }} {{ __('messages.of') }} {{ $notifications->total() }} {{ __('messages.records') }}
{{ $notifications->appends(request()->query())->links() }}
@endif
@endsection