In route file
Route::get('feed/{id}',function($id){
return view('app/feed',['id' => $id]);
});
In blade file
<?php
echo $id;
?>
In route file
Route::get('feed/{id}',function($id){
return view('app/feed',['id' => $id]);
});
In blade file
<?php
echo $id;
?>
Leave a Reply
You must be logged in to post a comment.