From cbfd459be55b9745b1dca6e1bb688942f256875c Mon Sep 17 00:00:00 2001 From: Toby Evans Date: Wed, 21 Aug 2024 18:48:38 +1200 Subject: [PATCH] Add tasks to start/restart Laravel Reverb (#3876) --- recipe/laravel.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/recipe/laravel.php b/recipe/laravel.php index 876051d1..114efc85 100644 --- a/recipe/laravel.php +++ b/recipe/laravel.php @@ -242,6 +242,16 @@ task('artisan:octane:status', artisan('octane:status')); desc('Publish all of the Laravel Nova resources'); task('artisan:nova:publish', artisan('nova:publish')); +/* + * Reverb. + */ + +desc('Starts the Reverb server'); +task('artisan:reverb:start', artisan('pulse:start')); + +desc('Restarts the Reverb server'); +task('artisan:reverb:restart', artisan('pulse:restart')); + /* * Pulse. */