İlk temizlik tamamlandı bir önceki projeden

This commit is contained in:
Ümit Tunç
2026-04-28 21:14:25 +03:00
commit f80443aec0
10000 changed files with 959965 additions and 0 deletions
+86
View File
@@ -0,0 +1,86 @@
<?php
namespace App\Http\Controllers;
use App\Http\Requests\StorePWHTRequest;
use App\Http\Requests\UpdatePWHTRequest;
use App\Models\PWHT;
class PWHTController 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\StorePWHTRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StorePWHTRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\PWHT $pWHT
* @return \Illuminate\Http\Response
*/
public function show(PWHT $pWHT)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\PWHT $pWHT
* @return \Illuminate\Http\Response
*/
public function edit(PWHT $pWHT)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdatePWHTRequest $request
* @param \App\Models\PWHT $pWHT
* @return \Illuminate\Http\Response
*/
public function update(UpdatePWHTRequest $request, PWHT $pWHT)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\PWHT $pWHT
* @return \Illuminate\Http\Response
*/
public function destroy(PWHT $pWHT)
{
//
}
}