Method 3: Command Line Update
Complete guide for Method 3: Command Line Update
Step 1: Access Your Server
# SSH into your server
ssh user@your-server.com
# Navigate to your Schedula directory
cd /path/to/schedula
Step 2: Run the Update Command
# Check for updates
php artisan schedula:check-updates
# Apply updates
php artisan schedula:update
# Or force update (skip confirmation)
php artisan schedula:update --force
Step 3: Verify the Update
# Check the current version
php artisan schedula:version
# Test the application
php artisan route:list
×