Код: Выделить всё
Route::put('offers/{id}/accept', 'OfferController@accept');
Код: Выделить всё
public function accept(Request $request, $id)
{
$validator = Validator::make($request->all(), [
"id" => 'required|integer'
]);
}
Подробнее здесь: https://stackoverflow.com/questions/423 ... in-laravel
Мобильная версия