Route::get('/news/post/{title}/{other_random_string}', NewsController@handlePostCreate);
//Controller
NewsController extends BaseController
{
public function handlePostCreate(title, other_random_string)
{
var_dump($title);
var_dump($other_random_string);
}
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community