Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. Route::prefix('auction')->namespace('Auction')->name('auction.')->group(function() {
  2. Route::get('delegations/{auction}/view/{lot}', 'AuctionDelegatorsController@delegation')->name('delegations');
  3.  
  4. @slot('url') {{route('auction.delegations', $auction, $lot)}} @endslot
  5.  
  6. Missing required parameters for [Route: auction.delegations] [URI: auction/delegations/{auction}/view/{lot}]
  7.  
  8. {{route('auction.delegations',['auction'=> $auction,'lot' => $lot])}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement