0
I’m having trouble pinpointing the route because of the two parameters it has.
Route::prefix('auction')->namespace('Auction')->name('auction.')->group(function() {
Route::get('delegations/{auction}/view/{lot}', 'AuctionDelegatorsController@delegation')->name('delegations');
and the url I’m trying to point out is:
@slot('url') {{route('auction.delegations', $auction, $lot)}} @endslot
The error it returns is as follows
Missing required parameters for [Route: auction.delegations] [URI: auction/delegations/{auction}/view/{lot}]
I can’t make it work, someone could help me see where I’m going wrong?