@extends('layouts.app') @section('content')
{{-- Breadcrumb --}} {{-- Page Header --}}

Blast Push Notification

Hantar notifikasi kepada pengguna.

{{-- Alerts --}} @include('errors') @if(session('success')) @endif @if(session('error')) @endif
@csrf


{{-- Templates Table --}}
@forelse($template as $index => $row) @php $code = $row->code ?? $row->Code ?? ''; $type = $row->type ?? $row->Type ?? ''; $head = $row->head ?? $row->Head ?? ''; $body = $row->body ?? $row->Body ?? ''; @endphp @empty @endforelse
# Code Type Head Body Action
{{ $index + 1 }} {{ $code ?: '—' }} {{ $type ?: '—' }} {{ $head }} {{ $body }}
@csrf

No push notification templates found.

@endsection