Welcome Guest, Not a member yet? Register   Sign In
Array Callable route
#6

(This post was last modified: 07-16-2022, 01:02 AM by luckmoshy.)

(07-16-2022, 12:33 AM)InsiteFX Wrote: Please Read:

CodeIgniter 4 User Guide - URI Routing - Using Named Routes

Thank @InsiteFX for your quickly reply because I know the named route as you've directed me to view the deep query I want to know for new CI 4.2 array callable route as named route
PHP Code:
$routes->match(['get''post'], 'login', [AuthController::class, 'login']); 
how to do it by named route action?

(07-16-2022, 12:48 AM)iRedds Wrote: @luckmoshy Options must be specified separately.

$routes->match(['get','post'],'login', [AuthController::class, 'login'], ['as'=>'login']);

Thank you now have got you clear
Code:
(Options must be specified separately)
Thank you

Thank you @iRedds for your great time this is what exactly I wanted so the problem solved 100% in this way

PHP Code:
$routes->match(['get','post'],'login', [AuthController::class, 'login'], ['as'=>'login']); 
Codeigniter First, Codeigniter Then You!!
yekrinaDigitals

Reply


Messages In This Thread
Array Callable route - by luckmoshy - 07-15-2022, 05:51 AM
RE: Array Callable route - by iRedds - 07-15-2022, 08:23 AM
RE: Array Callable route - by luckmoshy - 07-15-2022, 11:57 PM
RE: Array Callable route - by InsiteFX - 07-16-2022, 12:33 AM
RE: Array Callable route - by luckmoshy - 07-16-2022, 12:49 AM
RE: Array Callable route - by iRedds - 07-16-2022, 12:48 AM
RE: Array Callable route - by kenjis - 07-16-2022, 03:56 PM
RE: Array Callable route - by InsiteFX - 07-16-2022, 11:34 PM
RE: Array Callable route (solved) - by luckmoshy - 07-17-2022, 05:31 AM



Theme © iAndrew 2016 - Forum software by © MyBB