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

Revision

Revision 34 | Revision 44 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 34 Revision 35
Zeile 13... Zeile 13...
13
    class ShippingController extends Controller
13
    class ShippingController extends Controller
14
    {
14
    {
Zeile 15... Zeile 15...
15
 
15
 
16
        public function index(): Factory|View|Application
16
        public function index(): Factory|View|Application
17
        {
17
        {
18
            $shipping = Shipping::get();
18
            $shipping = Shipping::with("group")->get();
19
            return View( "shipping", [ "shipping" => $shipping ] );
19
            return View( "shipping", [ "shipping" => $shipping ] );
Zeile 20... Zeile 20...
20
        }
20
        }
21
 
21