CasperSecurity
<?php
namespace App\Http\Controllers;
use App\Models\Location;
use App\Http\Requests\StoreLocationRequest;
use App\Http\Requests\UpdateLocationRequest;
class LocationController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \App\Http\Requests\StoreLocationRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreLocationRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\Location $location
* @return \Illuminate\Http\Response
*/
public function show(Location $location)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\Location $location
* @return \Illuminate\Http\Response
*/
public function edit(Location $location)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateLocationRequest $request
* @param \App\Models\Location $location
* @return \Illuminate\Http\Response
*/
public function update(UpdateLocationRequest $request, Location $location)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\Location $location
* @return \Illuminate\Http\Response
*/
public function destroy(Location $location)
{
//
}
}