Skip to content

Instantly share code, notes, and snippets.

@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'));
}