Пример #1
0
 public function getServices()
 {
     $title = "Editar Servicios";
     $services = Servicios::where('deleted', '=', 0)->get();
     return View::make('admin.editServices')->with('title', $title)->with('services', $services);
 }