Files
citrus-cms/app/Http/Controllers/WelderTestPlanController.php
2026-04-28 21:14:25 +03:00

87 lines
1.9 KiB
PHP

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