@foreach($alerts as $key=> $row)
|
|
{{ $row->title }} |
{{-- {{ __('notifications.'.$row->user_status) }} | --}}
{{ ($row->user_status == 'all') ? __('notifications.all') : getUserRoleName($row->user_status) }} |
{{ __('notifications.'.$row->type) }} |
{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} |
|
@endforeach
@if( count( $alerts ) )
| {{ $alerts->links() }} |
@endif