@extends('layouts.admin.app') @section('title', translate('Add new notification')) @push('css_or_js') @endpush @section('content')

{{translate('send_Notification')}}

@csrf
{{translate('Notification_Table')}} {{ $notifications->total() }}
@foreach($notifications as $key=>$notification) @endforeach
{{translate('SL')}} {{translate('user')}} {{translate('title')}} {{translate('description')}} {{translate('status')}} {{translate('action')}}
{{$notifications->firstitem()+$key}} {{ $notification->user->f_name . ' ' . $notification->user->l_name }}
{{substr($notification['title'],0,25)}} {{strlen($notification['title'])>25?'...':''}}
{{substr($notification['description'],0,25)}} {{strlen($notification['description'])>25?'...':''}}
@csrf @method('delete')
{!! $notifications->links() !!}
@endsection @push('script_2') @endpush