curtain:preview

The curtain:preview command allows you to preview maintenance page before enabling it.

Basic Usage

php artisan curtain:preview

Available Options

php artisan curtain:preview
    --timer="2 hours"      # Preview with timer
    --message="text"       # Preview with message
    --template="modern"    # Preview specific template

Examples

# Preview modern template
php artisan curtain:preview --template=modern

# Preview with full configuration
php artisan curtain:preview \
    --timer="1 hour" \
    --message="Preview message" \
    --template="modern"

Last updated