• {{count($notifications)}}
    • You have {{count($notifications)}} notifications
      • @foreach($notifications as $notification)
      • {{$notification->name}}

        expired at {{$notification->expired_at->diffForHumans()}}

        {!! str_limit($notification->description,'40') !!}

        to {{($notification->agent)?$notification->agent->name:''}}

      • @endforeach
  • {{count($messages)}}
    • You have {{count($messages)}} messages
      • @foreach($messages as $message)
      • {{$message->name}} {{$message->created_at->diffForHumans()}}

        {!! str_limit($message->message,'40') !!}

        to {{($message->user)?$message->user->name:''}}

      • @endforeach