İlk temizlik tamamlandı bir önceki projeden
This commit is contained in:
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\NDT;
|
||||
use App\Http\Requests\StoreNDTRequest;
|
||||
use App\Http\Requests\UpdateNDTRequest;
|
||||
|
||||
class NDTController 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\StoreNDTRequest $request
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function store(StoreNDTRequest $request)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*
|
||||
* @param \App\Models\NDT $nDT
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function show(NDT $nDT)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*
|
||||
* @param \App\Models\NDT $nDT
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function edit(NDT $nDT)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*
|
||||
* @param \App\Http\Requests\UpdateNDTRequest $request
|
||||
* @param \App\Models\NDT $nDT
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function update(UpdateNDTRequest $request, NDT $nDT)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*
|
||||
* @param \App\Models\NDT $nDT
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function destroy(NDT $nDT)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user