Skip to content

Instantly share code, notes, and snippets.

View MrBeerBrewer's full-sized avatar

MrBeerBrewer MrBeerBrewer

View GitHub Profile
Routes:
Route::resource('/', 'ShoppingController');
Route::get('/prods', 'ProductsController@index');
Controller:
<?php
#Fetches products on the db and sends them to a view: cart.blade.php
namespace App\Http\Controllers;