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