87 lines
1.9 KiB
PHP
87 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\NaksConsumable;
|
|
use App\Http\Requests\StoreNaksConsumableRequest;
|
|
use App\Http\Requests\UpdateNaksConsumableRequest;
|
|
|
|
class NaksConsumableController 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\StoreNaksConsumableRequest $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(StoreNaksConsumableRequest $request)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \App\Models\NaksConsumable $naksConsumable
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(NaksConsumable $naksConsumable)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Models\NaksConsumable $naksConsumable
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(NaksConsumable $naksConsumable)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \App\Http\Requests\UpdateNaksConsumableRequest $request
|
|
* @param \App\Models\NaksConsumable $naksConsumable
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(UpdateNaksConsumableRequest $request, NaksConsumable $naksConsumable)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Models\NaksConsumable $naksConsumable
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(NaksConsumable $naksConsumable)
|
|
{
|
|
//
|
|
}
|
|
}
|