Пример #1
0
 /**
  * Show the form for creating a new resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function create()
 {
     $styles = AuctionStyle::orderBy('name')->get();
     return view('addauction', compact('styles'));
 }