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