NotificationServiceProvider::__construct()

void __construct(Application $app) Create a new service provider instance. Parameters Application $app Return Value void

Notifications\Channels

Illuminate\Notifications\Channels Classes BroadcastChannel DatabaseChannel MailChannel NexmoSmsChannel SlackWebhookChannel

Notifications\Console

Illuminate\Notifications\Console Classes NotificationTableCommand

Notifications\Events

Illuminate\Notifications\Events Classes BroadcastNotificationCreated NotificationFailed NotificationSending NotificationSent

Notifications\Messages

Illuminate\Notifications\Messages Classes DatabaseMessage MailMessage NexmoMessage SimpleMessage SlackAttachment SlackMessage

NotificationTableCommand

NotificationTableCommand class NotificationTableCommand extends Command (View source) Methods void __construct(Filesystem $files, Composer $composer) Create a new notifications table command instance. int run(InputInterface $input, OutputInterface $output) Run the console command. from Command int call(string $command, array $arguments = array()) Call another console command. from Command int callSilent(string $command, array $arguments = array()) Call another console command

NotificationTableCommand::anticipate()

string anticipate(string $question, array $choices, string $default = null) Prompt the user for input with auto completion. Parameters string $question array $choices string $default Return Value string

NotificationTableCommand::argument()

string|array argument(string $key = null) Get the value of a command argument. Parameters string $key Return Value string|array

NotificationTableCommand::arguments()

array arguments() Get all of the arguments passed to the command. Return Value array

NotificationTableCommand::ask()

string ask(string $question, string $default = null) Prompt the user for input. Parameters string $question string $default Return Value string