Subversion-Projekte lars-tiefland.webanos.faltradxxs.de

Revision

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

<?php

    namespace App\Http\Controllers;

    use App\Models\SalesPortal;
    use Illuminate\Http\Request;

    class SalesPortalController extends Controller
    {
        //
        public function index()
        {
            $salesPortals = SalesPortal::with('type')->get();
            return view( "salesPortal/index", [ "salesPortals" => $salesPortals ] );
        }

        public function create()
        {

        }

        public function edit()
        {

        }

        public function store()
        {

        }

        public function update()
        {

        }

        public function destroy()
        {

        }
    }