@extends('admin.layouts.master') @section('title', __('static.notify_templates.push_notification')) @section('content') @forelse ($pushNotificationTemplates as $index => $pushNotificationTemplate)

{{ $pushNotificationTemplate['name'] }}

@forelse ($pushNotificationTemplate['templates'] as $template) @php $status = $statuses[$template['slug']] ?? true; @endphp @empty @endforelse
{{ __('static.notify_templates.name') }} {{ __('static.notify_templates.description') }} {{ __('static.status') }} {{ __('static.notify_templates.action') }}
{{ $template['name'] }} {{ $template['description'] }} {{ $status ? __('static.active') : __('static.deactive') }}
@empty @endforelse @endsection