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