I have route:
$app->get('/admin/login/{status}', 'App\Controller\Admin\AdminController:loginAction')
How do I make {status} parameter optional?
use square brackets:
$app->get('/admin/login[/{status}]', 'App\Controller\Admin\AdminController:loginAction')
See http://www.slimframework.com/docs/objects/router.html#route-placeholders
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With