@extends('layouts.md-admin-notification') @section('content')
{{ trans('cruds.notification.title') }}
 
@foreach ($get_notifications as $alert) @endforeach
  {{ trans('cruds.notification.content') }} {{ trans('cruds.notification.received_on') }}
{{ $alert->content }} @if ($alert->created_at) {{ Carbon\Carbon::parse($alert->created_at)->diffForHumans() }} @endif
@endsection @section('scripts') @parent @endsection