@extends('layouts.app')
@section('content')
@foreach($notifications as $notification)
-
@switch($notification->action)
@case('like')
{!! $notification->rendered !!}
{{$notification->created_at->diffForHumans(null, true, true, true)}}
@break
@endswitch
@endforeach
@endsection