CasperSecurity
<?php
namespace App\Http\Controllers;
use App\Models\SettingsLocation;
use App\Http\Requests\StoreSettingsLocationRequest;
use App\Http\Requests\UpdateSettingsLocationRequest;
class SettingsLocationController 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\StoreSettingsLocationRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreSettingsLocationRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\SettingsLocation $settingsLocation
* @return \Illuminate\Http\Response
*/
public function show(SettingsLocation $settingsLocation)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\SettingsLocation $settingsLocation
* @return \Illuminate\Http\Response
*/
public function edit(SettingsLocation $settingsLocation)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateSettingsLocationRequest $request
* @param \App\Models\SettingsLocation $settingsLocation
* @return \Illuminate\Http\Response
*/
public function update(UpdateSettingsLocationRequest $request, SettingsLocation $settingsLocation)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\SettingsLocation $settingsLocation
* @return \Illuminate\Http\Response
*/
public function destroy(SettingsLocation $settingsLocation)
{
//
}
}