@extends('layouts.vendor') @section('content')

@lang('messages.ui.all_notifications')

@if($notifications->where('is_read', false)->count() > 0)
@csrf
@endif
@if($notifications->isEmpty())

@lang('messages.ui.no_notifications')

@else
No notifications match your search.
{{ $notifications->links() }}
@endif
@endsection