@extends('frontend.layouts.user_panel') @section('panel_content')
{{ translate('Notifications') }}
@forelse($notifications as $notification)

{{ $notification->title }}

{{ \Illuminate\Support\Str::words($notification->text, 20, '...') }}

@if (strlen($notification->text) > 20) @else @endif
@empty
{{ translate('No notification found') }}
@endforelse
{!! $notifications->links() !!}
{{--
@forelse($notifications as $notification)
@empty
{{ translate('No notification found') }}
@endforelse
--}} @endsection @section('script') @endsection