Subversion-Projekte lars-tiefland.webanos.marine-sales.de

Revision

Revision 226 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<?php

namespace App\Http\Controllers\bestellwesen;

    use App\Http\Controllers\Controller;
use App\Http\Requests\StoreSupplierShippingRequest;
use App\Http\Requests\UpdateSupplierShippingRequest;
use App\Models\Supplier;
use App\Models\SupplierShipping;

class SupplierShippingController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index(Supplier $supplier )
    {
            //
            $vKosten = SupplierShipping::where("supplier_id", $supplier->id )->get();
            return view( "online_shop.shipping_include" );
    }

    /**
     * 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\StoreSupplierShippingRequest  $request
     * @return \Illuminate\Http\Response
     */
    public function store(StoreSupplierShippingRequest $request)
    {
        //
    }

    /**
     * Display the specified resource.
     *
     * @param  \App\Models\SupplierShipping  $supplierShipping
     * @return \Illuminate\Http\Response
     */
    public function show(SupplierShipping $supplierShipping)
    {
        //
    }

    /**
     * Show the form for editing the specified resource.
     *
     * @param  \App\Models\SupplierShipping  $supplierShipping
     * @return \Illuminate\Http\Response
     */
    public function edit(SupplierShipping $supplierShipping)
    {
        //
    }

    /**
     * Update the specified resource in storage.
     *
     * @param  \App\Http\Requests\UpdateSupplierShippingRequest  $request
     * @param  \App\Models\SupplierShipping  $supplierShipping
     * @return \Illuminate\Http\Response
     */
    public function update(UpdateSupplierShippingRequest $request, SupplierShipping $supplierShipping)
    {
        //
    }

    /**
     * Remove the specified resource from storage.
     *
     * @param  \App\Models\SupplierShipping  $supplierShipping
     * @return \Illuminate\Http\Response
     */
    public function destroy(SupplierShipping $supplierShipping)
    {
        //
    }
}