public function getHabitualForm($type) { $url = 'usuario/publicacion/habitual/' . $type . '/enviar'; $title = "Publicacion Habitual / " . ucwords($type) . " | pasillo24.com"; $departamentos = Department::get(); $marcas = Marcas::get(); return View::make('publications.habitualForm')->with('title', $title)->with('type', $type)->with('url', $url)->with('departamento', $departamentos)->with('marcas', $marcas)->with('categorias', $categorias); }
public function getBrand() { $brand = Marcas::get(); return Response::json(array('type' => 'success', 'marcas' => $brand)); }