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