updated streamline-setup v2

This commit is contained in:
2025-01-15 08:53:49 -08:00
committed by alec.turner
parent a2ce9248f0
commit 4b569f81b0
20228 changed files with 2932048 additions and 63204 deletions
@@ -0,0 +1,83 @@
<?php
namespace Streamline\Http\Controllers;
use Streamline\Models\SecurityQuestion;
use Illuminate\Http\Request;
class SecurityQuestionController extends Controller {
public function __construct() {
}
/**
* 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 \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request) {
//
}
/**
* Display the specified resource.
*
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function show(SecurityQuestion $securityQuestion) {
//
}
/**
* Show the form for editing the specified resource.
*
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function edit(SecurityQuestion $securityQuestion) {
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function update(Request $request, SecurityQuestion $securityQuestion) {
//
}
/**
* Remove the specified resource from storage.
*
* @param SecurityQuestion $securityQuestion
* @return \Illuminate\Http\Response
*/
public function destroy(SecurityQuestion $securityQuestion) {
//
}
}