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