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