Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

734
Views
Pass multiple optional parameters in Laravel 9

I am trying to create a route that takes either one of two parameters. However the dd returns me $b_id, null instead of null, $b_id. How can I pass only b as a parameter and omit a?

web.php

Route::get('myroute/{a?}/{b?}', [MyController::class, 'testFunction'])
    ->name('test.testFunction');

Controller

public function testFunction( $a = null,  $b = null) 
{
    dd($a, $b);
    // stuff
}

Ajax call

function test($b_id) {
    $url = "{{ route('test.testFunction', ':b') }}";
    $url = $url.replace(":b", $b_id);
    $.ajax({
        url: $url,
        type: 'GET'
    })}
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

This is not really possible at the moment but there is a workaround. You can pass the parameters in an named array and change the route to simply Route::get('myroute' ...):

route('test.testFunction', ['a' => 'xyz', 'b' => 'yzt'])
===== creates
http://myroute?a=xyz&b=yzt

Afterwards you can check if the parameters a or b are present and retrieve them normally if they are.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!