Laravel Remote is a package by Spatie that provides a command to execute Artisan commands on a remote server.Here are some examples of remote commands from the documentation: 1php artisan remote cache:clear 2 3# Raw ls command on the server 4php artisan remote ls --raw 5 6# Raw ls with flags 7php artisan remote --raw...
30 April, 2022
29 April, 2022
Migrate One Database to Another in a Laravel Project
Programing Coderfunda
April 29, 2022
Laravel, Packages
No comments
Migrate DB is a package by Andrey Helldar to migrate one database to another in Laravel apps. Configuring two databases in the config/database.php file, you can use the connection name to run the migration:1php artisan db:migrate \2 --schema-from=example \3 --schema-to=example2The command will perform all migrations on the...
28 April, 2022
Manage Scheduled Tasks Through a Dashboard
Programing Coderfunda
April 28, 2022
Laravel, Packages
No comments

Laravel Database Schedule is a package to schedule tasks through a UI dashboard without having to redeploy your application. While you'll still need to write the scheduled task commands, once created, you can use the provided /schedule endpoint...