I'm trying to import the model in function and call create function of the specific model.
I know which model to call from Route::currentRoute();, so it must look like
$model = Route::currentRouteName() // return like 'Blog/Post'
$create = new App\Models\$model::create($request->input());
Any ideas on how to do it in that way?