@extends('agent.layouts.app') @section('title', translate('Notifications', 'notifications')) @section('content')
@if ($notifications->count() > 0)
@foreach ($notifications as $notification) @if ($notification->link)
{{ $notification->title }}

{{ $notification->title }}

{{ $notification->created_at->diffforhumans() }}
@else
{{ $notification->title }}

{{ $notification->title }}

{{ $notification->created_at->diffforhumans() }}
@endif @endforeach
@else
{{ translate('No notifications found', 'notifications') }}
@endif
{{ $notifications->links() }} @endsection