@extends('provider.layout.app') @section('title', 'Notifications') @section('content')

notifications

@foreach($notifications as $index => $notify)
@if($notify->image) image @else N/A @endif
{{ date('F d, Y, h:i A', strtotime($notify->created_at)) }}

{{ str_limit($notify->description, $limit = 100, $end = '...') }}

@endforeach
@endsection @section('scripts') @endsection