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