Exemple #1
0
 /**
  * Display the specified resource.
  *
  * @param  int $id
  *
  * @return \Illuminate\Http\Response
  */
 public function show($id)
 {
     $venue = Venue::with('category', 'spaces.translations')->where('id', $id)->first();
     return view('dashboard.venues.show', compact('venue'));
 }