Esempio n. 1
0
 /**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update(AdType $type, Requests\TypeRequest $request)
 {
     $type->update($request->input());
     \Session::flash('message', 'Тип обьявления обновлен');
     return redirect()->route('admin.type.index');
 }