@extends('admin.layouts.app') @section('panel') @php $sessionData = session('SEND_NOTIFICATION') ?? []; $viaName = $sessionData['via'] ?? 'email'; $viaText = @$sessionData['via'] == 'push' ? 'Push notification ' : ucfirst($viaName); @endphp @empty(!$sessionData)
{{ @$sessionData['cooling_time'] }}

@lang("$viaText will be sent again with a") @lang(' second delay. Avoid closing or refreshing the browser.')

@lang(' ' . @$sessionData['total_sent'] . ' out of ' . @$sessionData['total_user'] . ' ' . $viaName . ' were successfully transmitted')

@endempty
@csrf
@if (gs('en'))
@lang('Send Via Email')
@endif @if (gs('sn'))
@lang('Send Via SMS')
@endif @if (gs('pn'))
@lang('Send Via Firebase')
@endif
0 @lang('active users found to send the notification')
@lang('Supported Files'):@lang('.png, .jpg, .jpeg')
@lang('User')
@lang('Seconds')
@endsection @push('script') @endpush @push('style') @endpush