Laravel append URI in route

Created at 07-Sep-2021 , By samar

Laravel append URI in route

In this session, we are going to try to solve the "Laravel append URI in route" puzzle by using the computer language.

You can append URI in route using comma separated array value to route. You can redirect to generated query string URL using redirect on controller action and using anchor tag in view file
  • Pass query string to url using named route in laravel

    <?php 
    
    <a href="{{ route('searchResult', ['keyword' => 'samar']) }}"> URL with query string </a>
    
    //OutputĀ 
    <a href="http://localhost:8000/search/all?keyword=samar" target="_blank" rel="noopener">http://localhost:8000/search/all?keyword=samar</a>
    
    //Step by step code implementation
    //# Create route in web.php
    use App\Http\Controllers\SearchController;
    Route::get('/search/all/', [SearchController::class, 'getAllSearchResult'])->name('searchResult');
    
    //Create SearchController if not exists with method getAllSearchResult
    php artisan make:controller SearchController
    
    //#Create controller method
    //app\Http\Controllers\SearchController.php
    <?php
    
    namespace App\Http\Controllers;
    
    use Illuminate\Http\Request;
    
    class SearchController extends Controller
    {
    
        public function getAllSearchResult(){
            $getQueryString=\Request::fullUrl();
            dd($getQueryString); 
        }
    }
    

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

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.