Files
citrus-cms/app/Http/Controllers/PaintMatrixController.php
2026-04-28 21:14:25 +03:00

87 lines
1.8 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\PaintMatrix;
use App\Http\Requests\StorePaintMatrixRequest;
use App\Http\Requests\UpdatePaintMatrixRequest;
class PaintMatrixController 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\StorePaintMatrixRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StorePaintMatrixRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\PaintMatrix $paintMatrix
* @return \Illuminate\Http\Response
*/
public function show(PaintMatrix $paintMatrix)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\PaintMatrix $paintMatrix
* @return \Illuminate\Http\Response
*/
public function edit(PaintMatrix $paintMatrix)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdatePaintMatrixRequest $request
* @param \App\Models\PaintMatrix $paintMatrix
* @return \Illuminate\Http\Response
*/
public function update(UpdatePaintMatrixRequest $request, PaintMatrix $paintMatrix)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\PaintMatrix $paintMatrix
* @return \Illuminate\Http\Response
*/
public function destroy(PaintMatrix $paintMatrix)
{
//
}
}