Skip to content

Releases: tomatophp/filament-alerts

v4.0.0

28 Sep 03:10

Choose a tag to compare

What's Changed

  • Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 by @dependabot[bot] in #9
  • Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 by @dependabot[bot] in #10
  • Bump actions/checkout from 4 to 5 by @dependabot[bot] in #15
  • Bump stefanzweifel/git-auto-commit-action from 5 to 6 by @dependabot[bot] in #12
  • Support Filament V4
  • Move Logs to Settings Hub
  • Add queue to config to set the onQueue for dispatch notifications job

New Contributors

Full Changelog: v2.2.3...v4.0.0

v2.2.3

25 Nov 11:19

Choose a tag to compare

Full Changelog: v2.2.2...v2.2.3

v2.2.2

25 Nov 03:50

Choose a tag to compare

  • inject image and data to the request by @3x1io

Full Changelog: v2.2.1...v2.2.2

v2.2.1

25 Nov 03:01

Choose a tag to compare

  • move notification macro to main provider by @3x1io

Full Changelog: v2.2.0...v2.2.1

v2.2.0

18 Nov 13:46

Choose a tag to compare

What's Changed

  • V2.2 by @3x1io in #5

New Contributors

  • @3x1io made their first contribution in #5

Full Changelog: v2.0.4...v2.2.0

v2.0.4

17 Sep 17:07
9543003

Choose a tag to compare

Full Changelog: v2.0.3...v2.0.4

v2.0.3

16 Sep 14:52

Choose a tag to compare

  • remove the Template from the sidebar
  • update the main group to Settings
  • add filament-plugins integration

Full Changelog: v2.0.2...v2.0.3

v2.0.2

24 Jun 13:54

Choose a tag to compare

v2.0.1

13 Jun 22:36

Choose a tag to compare

Full Changelog: v2.0.0...v2.0.1

v2.0.0

10 Jun 14:47

Choose a tag to compare

Features

  • Send Notification to users
  • Use Filament Native Notification
  • Use Notification Templates
  • Full FCM Service Worker Integration
  • Use Multiple Notification Channels
  • API to get notifications
  • Hide Notifications Resources
  • Use Slack Driver
  • Use Discord Driver
  • Use Reverb Driver
  • Use SMS Misr Driver
  • Use Email Driver
  • Use Database Driver
  • Use MessageBird Driver

Use Filament Native Notification

you can use the filament native notification and we add some macro for you

use Filament\Notifications\Notification;

Notification::make('send')
    ->title('Test Notifications')
    ->body('This is a test notification')
    ->icon('heroicon-o-bell')
    ->color('success')
    ->actions([
        \Filament\Notifications\Actions\Action::make('view')
            ->label('View')
            ->url('https://google.com')
            ->markAsRead()
    ])
    ->sendToDiscord(auth()->user())
    ->sendToEmail(auth()->user())
    ->broadcast(auth()->user())
    ->sendToDatabase(auth()->user())
    ->sendToSlack(auth()->user())
    ->sendToFCM(auth()->user())

Full Changelog: v1.0.3...v2.0.0