v0.5.4 - Created the "reservations in location" screen and added a location option when creating reservations.

This commit is contained in:
frederikpyt
2020-08-06 10:32:34 +02:00
parent 358e47b703
commit 4b0ad949ba
6 changed files with 103 additions and 11 deletions
@@ -72,11 +72,11 @@ class LocationController extends Controller
* Display the specified resource.
*
* @param \App\Location $location
* @return \Illuminate\Http\Response
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function show(Location $location)
{
return view("admin.locations.show", [ "location" => $location]);
}
/**