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

{{translate('send_Notification')}}

@csrf
* ( {{translate('ratio')}} 3:1 )
{{translate('Notification_Table')}} {{ $notifications->total() }}
@foreach($notifications as $key=>$notification) @endforeach
{{translate('SL')}} {{translate('image')}} {{translate('title')}} {{translate('description')}} {{translate('status')}} {{translate('action')}}
{{$notifications->firstitem()+$key}} @if($notification['image']!=null) @else @endif
{{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