I have this site and one of its pages creates a simple list of people from the database. I need to add one specific person to a variable I can access.
How do I modif
Use compact
function view($view) { $ms = Person::where('name', '=', 'Foo Bar')->first(); $persons = Person::order_by('list_order', 'ASC')->get(); return View::make('users', compact('ms','persons')); }