İ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
@@ -0,0 +1,86 @@
<?php
namespace App\Http\Controllers;
use App\Models\WelderConfirmCheck;
use App\Http\Requests\StoreWelderConfirmCheckRequest;
use App\Http\Requests\UpdateWelderConfirmCheckRequest;
class WelderConfirmCheckController 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\StoreWelderConfirmCheckRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreWelderConfirmCheckRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\WelderConfirmCheck $welderConfirmCheck
* @return \Illuminate\Http\Response
*/
public function show(WelderConfirmCheck $welderConfirmCheck)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\WelderConfirmCheck $welderConfirmCheck
* @return \Illuminate\Http\Response
*/
public function edit(WelderConfirmCheck $welderConfirmCheck)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateWelderConfirmCheckRequest $request
* @param \App\Models\WelderConfirmCheck $welderConfirmCheck
* @return \Illuminate\Http\Response
*/
public function update(UpdateWelderConfirmCheckRequest $request, WelderConfirmCheck $welderConfirmCheck)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\WelderConfirmCheck $welderConfirmCheck
* @return \Illuminate\Http\Response
*/
public function destroy(WelderConfirmCheck $welderConfirmCheck)
{
//
}
}