How to send ID to another page in Laravel
Created at 11-Oct-2021 ,
By samar
How to send ID to another page in Laravel
In this article, we will see how to solve "How to send ID to another page in Laravel".
You can send an ID (variable value) to another page in Laravel using the route method in the anchor tag in the view file by passing the variable to it. You have to just pass data from route to controller and after controller to another view page.-
Pass variable (id) to another page as route parameter via controller in Laravel
//resources\views\welcome.blade.php @php $ID = 1; @endphp <a href="{{ route('id.detail', ['id'=>$ID]) }}"> Get id value in another view </a> //routes\web.php Route::get('get-id/{id}', [HomeController::class, 'getUserDetail'])->name('id.detail'); //app\Http\Controllers\HomeController.php public function getUserDetail($id){ return view('home')->with(['id'=> $id]); } //resources\views\home.blade.php <!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap CSS --> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous"> <title>Home page !</title> </head> <body> <h1> {{ $id }} </h1> </body> </html>
Generated URL:
http://localhost:8000/get-id/1
Output:
1
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- Laravel onclick function not working
- Update if exist else insert new record in laravel
- Composer create project laravel/laravel example app
- How to return error message from controller to view in laravel
- How to add active class to menu item in laravel
- Laravel create default admin user
- How to get column names from table in Laravel
- SQLSTATE[42000]: Syntax error or access violation: 1091 Can't DROP 'posts_user_id_foreign'; check that column/key exists
- Method chaining in Laravel
- Illuminate\Database\QueryException could not find driver
- Create a record if not exist in laravel
- How to validate website url in laravel using validaiton
- Send id with route Laravel
- Ajax POST request in laravel
- Return redirect laravel not working
- Connection could not be established with host smtp.gmail.com :stream_socket_client(): unable to connect to tcp://smtp.gmail.com:587 (Connection refused)"
- Post model with title and body in laravel 8
- Method Illuminate\Events\Dispatcher::fire does not exist
- Laravel delete all rows older than 30 days
- Call to undefined relationship [user] on model [App\Models\Post]
- How to display 1 day ago in comments in laravel view
- How to check duplicate entry in laravel
- Get duplicate records in laravel
- Check if Relationship Method Exists in Laravel
- Shorter syntax for whereHas with call back function in laravel