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