Esempio n. 1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  App\RoomType $roomType
  * @return Response
  */
 public function destroy(RoomType $roomType)
 {
     $roomType->delete();
     Storage::delete($roomType['image_path']);
     return redirect('/type');
 }