Revision 179 | Revision 190 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Http\Controllers\bestellwesen;use App\Http\Controllers\Controller;use App\Http\Requests\StoreSupplierWarehouseRequest;use App\Http\Requests\UpdateSupplierWarehouseRequest;use App\Models\SupplierWarehouse;class SupplierWarehouseController 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\StoreSupplierWarehouseRequest $request* @return \Illuminate\Http\Response*/public function store( StoreSupplierWarehouseRequest $request){//}/*** Display the specified resource.** @param \App\Models\SupplierWarehouse $supplierWarhouse* @return \Illuminate\Http\Response*/public function show( SupplierWarehouse $supplierWarhouse){//}/*** Show the form for editing the specified resource.** @param \App\Models\SupplierWarehouse $supplierWarhouse* @return \Illuminate\Http\Response*/public function edit( SupplierWarehouse $supplierWarhouse){//}/*** Update the specified resource in storage.** @param \App\Http\Requests\UpdateSupplierWarehouseRequest $request* @param \App\Models\SupplierWarehouse $supplierWarhouse* @return \Illuminate\Http\Response*/public function update( UpdateSupplierWarehouseRequest $request, SupplierWarehouse $supplierWarhouse){//}/*** Remove the specified resource from storage.** @param \App\Models\SupplierWarehouse $supplierWarhouse* @return \Illuminate\Http\Response*/public function destroy( SupplierWarehouse $supplierWarhouse){//}}