Skip to content

Instantly share code, notes, and snippets.

View zach2825's full-sized avatar

The Zach zach2825

View GitHub Profile
@zach2825
zach2825 / Articolo.php
Last active August 26, 2019 15:56 — forked from riccardopirani/Articolo.php
Display select values with Laravel
public function GetArticoli($IdUtente)
{
// if you have a Articolo model.
$articoli = App\Articolo::where('IdUtente', '=', $IdUtente)->get();
return view('gestionearticoli', compact('articoli'));
}