The interface and trait are already imported for all notifications generated using the make:notification command, so you may immediately add them to your notification class:<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\...
The interface and trait are already imported for all notifications generated using make:notification, so you may immediately add them to your notification class:<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illuminate\Contracts\Queue\...
The interface and trait are already imported for all notifications generated using the make:notification command, so you may immediately add them to your notification class:<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\...
The interface and trait are already imported for all notifications generated using make:notification, so you may immediately add them to your notification class:<?phpnamespace App\Notifications;use Illuminate\Bus\Queueable;use Illuminate\Notifications\Notification;use Illuminate\Contracts\Queue\ShouldQueue;...
Update logo to support dark/light theme (#1538) Sep 25, 2024 config make config stub. set default guard Jan 15, 2022 database Add nullable types from Pint (#1499) Jun 5, 2024 routes Lint stub files with Pint (#1313) May 9, 2023 ...
improvement: add brand new logo to the project (#1140) Oct 29, 2020 config Normalize and style config file May 3, 2024 docs Merge pull request#1806from spatie/v9-release Jul 2, 2024 resources/lang Fixing minor typo in Spanish language file. ...
Added the ability to set the timeout and retry properties on Action classes. Fixed a visual issue with the Line field's base text sizing. Fixed several visual issues with notifications. Fixed an issue preventing default values from being set on Repeater fields. Fixed an issue where the notific...
use NotificationChannels\OneSignal\OneSignalWebButton; use Illuminate\Notifications\Notification; class AccountApproved extends Notification { public function via($notifiable) { return [OneSignalChannel::class]; } public function toOneSignal($notifiable) { return OneSignalMessage::create() ->setSubject("Your...
Carefully crafted to simplify the analysis of your code directly from your terminal. Add API Keys to Your Laravel Models with Laravel Keyable Laravel Keyable is a package by Liran Cohen that enables you to add API keys to any model and associate incoming requests with their respective model. ...
<?phpnamespaceApp\Models;useIlluminate\Notifications\Notifiable;useIlluminate\Foundation\Auth\UserasAuthenticatable;classAdminextendsAuthenticatable{useNotifiable;/** * The attributes that are mass assignable. * * @var array */protected$fillable=['name','email','password',];/** ...