@extends('layouts.app') @section('title', $app_setting['name'] . ' | Notification List') @section('content')
@foreach ($notifications as $notification) @endforeach
# Type Is Enabled Action
{{ $loop->iteration }} {{ $notification->type }} @if ($notification->is_enabled) Yes @else No @endif
@endsection