Source profileQuality 95/100

event4u-app/agent-config/src/skills/laravel-notifications/SKILL.md

laravel-notifications

Use when sending notifications via mail, Slack, database, or custom channels — with queuing, on-demand recipients, and notification preferences.

Source repository stars
7
Declared platforms
0
Static risk flags
0
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Use when sending notifications via mail, Slack, database, or custom channels — with queuing, on-demand recipients, and notification preferences.

Best for

  • Email, Slack, SMS, or database notifications
  • Custom notification channels
  • On-demand notifications (to non-user recipients)

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/laravel-notifications"
Safe inspection promptEditorial

Inspect the Agent Skill "laravel-notifications" from https://github.com/event4u-app/agent-config/blob/0adf49a8ae84b0ff6e2de8759eea43257e020eff/src/skills/laravel-notifications/SKILL.md at commit 0adf49a8ae84b0ff6e2de8759eea43257e020eff. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Procedure: Create a notification

    1. Inspect existing notifications — Read app/Notifications/ and the notifiable models for current channels, queue defaults, and per-user preferences. 2. Generate class — php artisan make:notification InvoiceCreated. 3. Choose channels — Mail, database, Slack, or custom. Implemen…

    Inspect existing notifications — Read app/Notifications/ and the notifiable models for current channels, queue defaults, and per-user preferences.Generate class — php artisan make:notification InvoiceCreated.Choose channels — Mail, database, Slack, or custom. Implement via().
  2. 02

    When to use

    Use this skill when sending notifications to users or external systems: - Email, Slack, SMS, or database notifications - Custom notification channels - On-demand notifications (to non-user recipients) - Notification preferences and opt-out logic

    Email, Slack, SMS, or database notificationsCustom notification channelsOn-demand notifications (to non-user recipients)
  3. 03

    Example

    Review the “Example” section in the pinned source before continuing.

    Review and apply the “Example” source section.
  4. 04

    Sending notifications

    Review the “Sending notifications” section in the pinned source before continuing.

    Review and apply the “Sending notifications” source section.

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score95/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars7SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
event4u-app/agent-config
Skill path
src/skills/laravel-notifications/SKILL.md
Commit
0adf49a8ae84b0ff6e2de8759eea43257e020eff
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

laravel-notifications

When to use

Use this skill when sending notifications to users or external systems:

  • Email, Slack, SMS, or database notifications
  • Custom notification channels
  • On-demand notifications (to non-user recipients)
  • Notification preferences and opt-out logic

For Mailables (complex email templates, attachments), see laravel-mail.

Procedure: Create a notification

  1. Inspect existing notifications — Read app/Notifications/ and the notifiable models for current channels, queue defaults, and per-user preferences.
  2. Generate classphp artisan make:notification InvoiceCreated.
  3. Choose channels — Mail, database, Slack, or custom. Implement via().
  4. Build content — Implement toMail(), toArray(), etc. for each channel.
  5. Queue it — Add ShouldQueue interface for non-blocking delivery.
  6. Verify — Send test notification, confirm delivery on all channels.

Example

php artisan make:notification InvoiceCreated
class InvoiceCreated extends Notification implements ShouldQueue
{
    use Queueable;

    public function __construct(
        private readonly Invoice $invoice,
    ) {}

    /** @return array<int, string> */
    public function via(object $notifiable): array
    {
        return ['mail', 'database'];
    }

    public function toMail(object $notifiable): MailMessage
    {
        return (new MailMessage())
            ->subject('New Invoice #' . $this->invoice->getNumber())
            ->greeting('Hello ' . $notifiable->getName())
            ->line('A new invoice has been created.')
            ->action('View Invoice', url('/invoices/' . $this->invoice->getId()))
            ->line('Thank you for your business.');
    }

    /** @return array<string, mixed> */
    public function toArray(object $notifiable): array
    {
        return [
            'invoice_id' => $this->invoice->getId(),
            'amount' => $this->invoice->getAmount(),
        ];
    }
}

Sending notifications

// Via the Notifiable trait on the model
$user->notify(new InvoiceCreated($invoice));

// Via the Notification facade (multiple recipients)
Notification::send($users, new InvoiceCreated($invoice));

// On-demand (no user model needed)
Notification::route('mail', 'admin@example.com')
    ->route('slack', '#billing')
    ->notify(new InvoiceCreated($invoice));

Database notifications

Requires the notifications table migration:

php artisan notifications:table
php artisan migrate
// Read notifications
$user->notifications;           // all
$user->unreadNotifications;     // unread only

// Mark as read
$notification->markAsRead();
$user->unreadNotifications->markAsRead();

Slack notifications

public function toSlack(object $notifiable): SlackMessage
{
    return (new SlackMessage())
        ->text('Invoice #' . $this->invoice->getNumber() . ' created')
        ->headerBlock('New Invoice')
        ->sectionBlock(function (SectionBlock $block) {
            $block->text('Amount: ' . $this->invoice->getAmount());
        });
}

Notification preferences

public function via(object $notifiable): array
{
    // Respect user preferences
    $channels = ['database'];

    if ($notifiable->wantsEmailNotifications()) {
        $channels[] = 'mail';
    }

    if ($notifiable->wantsSlackNotifications()) {
        $channels[] = 'slack';
    }

    return $channels;
}

Core rules

  • Always queue notifications — implement ShouldQueue to avoid blocking requests.
  • Keep payloads small in toArray() — store IDs, not full objects.
  • Use via() for channel logic — don't hardcode channels, respect user preferences.
  • On-demand for external recipients — use Notification::route() for non-user targets.
  • Database notifications for in-app — use the notifications table for in-app notification centers.

Output format

  1. Notification class with via() and channel-specific methods
  2. Queued dispatch with proper serialization

Auto-trigger keywords

  • notification
  • notify
  • Notifiable
  • MailMessage
  • SlackMessage
  • database notification

Gotcha

  • Don't send notifications synchronously in request lifecycle — always queue them.
  • The model forgets to implement toArray() for database notifications — it throws silently.
  • via() method must return an array even for a single channel — return ['mail'], not return 'mail'.

Do NOT

  • Do NOT store large objects in database notification data — use IDs and fetch on read.
  • Do NOT use notifications for complex emails — use Mailables instead.

Alternatives

Compare before choosing