87 lines
1.8 KiB
PHP
87 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Requests\StoreQCActivityRequest;
|
|
use App\Http\Requests\UpdateQCActivityRequest;
|
|
use App\Models\QCActivity;
|
|
|
|
class QCActivityController 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\StoreQCActivityRequest $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(StoreQCActivityRequest $request)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \App\Models\QCActivity $qCActivity
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(QCActivity $qCActivity)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Models\QCActivity $qCActivity
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(QCActivity $qCActivity)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \App\Http\Requests\UpdateQCActivityRequest $request
|
|
* @param \App\Models\QCActivity $qCActivity
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(UpdateQCActivityRequest $request, QCActivity $qCActivity)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Models\QCActivity $qCActivity
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(QCActivity $qCActivity)
|
|
{
|
|
//
|
|
}
|
|
}
|