@foreach($notifications as $key=> $row)
|
|
{{ $row->name }} |
{{ __('notifications.'.$row->status) }} |
{{ $row->user? $row->user->name : '-' }} |
{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} |
|
@endforeach
@if( count( $notifications ) && $notifications->hasPages() )
| {{ $notifications->links() }} |
@endif