I think you will have something like this
Route::get('blog/{article}/', function($article)
{
echo "<p>Article: $article</p>";
});
ahmedmahmoudit said:
I think you will have something like this
Route::get('blog/{article}/', function($article) { echo "<p>Article: $article</p>"; });
That works but I'm confused how that would integrate with Wordpress. If I install Wordpress under my /public folder, I don't see how I'm going to get the article to show up.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.