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