@extends('backend.layouts.master')
@section('title', __('static.push_notification_templates.push_notification_templates'))
@section('content')
{{ __('static.push_notification_templates.name') }} |
{{ __('static.push_notification_templates.description') }} |
{{ __('static.push_notification_templates.actions') }} |
@forelse ($pushNotificationTemplates as $pushNotificationTemplate)
@foreach ($pushNotificationTemplate['templates'] as $template)
{{ $template['name'] }} |
{{ $template['description'] }} |
|
@endforeach
@empty
{{ __('static.push_notification_templates.no_templates_available') }} |
@endforelse
{{--
{{ __('static.push_notification_templates.push_notification_templates') }}
{{ __('static.push_notification_templates.name') }} |
{{ __('static.push_notification_templates.description') }} |
{{ __('static.push_notification_templates.actions') }} |
@forelse ($pushNotificationTemplates as $pushNotificationTemplate)
@foreach ($pushNotificationTemplate['templates'] as $template)
{{ $template['name'] }} |
{{ $template['description'] }} |
|
@endforeach
@empty
{{ __('static.push_notification_templates.no_templates_available') }} |
@endforelse
--}}
@endsection
@push('js')
@endpush