/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { $tarea = \App\Tarea::find($id); $proyectos = Proyecto::all(); $users = DB::table('users')->where('id_type', '=', '3')->get(); $status = Status::all(); return view('tarea.edit', compact('tarea', 'proyectos', 'users', 'status')); }
/** * Run the database seeds. * * @return void */ public function run() { $faker = Faker\Factory::create('es_ES'); $empleados = \App\Empleado::all()->lists('rut')->toArray(); $proyectos = \App\Proyecto::all()->lists('id')->toArray(); for ($i = 0; $i < 25; $i++) { DB::table('informes')->insert(['texto' => $faker->realText(255), 'fecha_creacion' => $faker->date(), 'fecha_ultima_revision' => 'now', 'proyecto_id' => $faker->randomElement($proyectos), 'empleado_rut' => $faker->randomElement($empleados), 'created_at' => 'now', 'updated_at' => 'now']); } }
/** * Run the database seeds. * * @return void */ public function run() { $faker = Faker\Factory::create('es_ES'); $empleados = \App\Empleado::all()->lists('rut')->toArray(); $proyectos = \App\Proyecto::all()->lists('id')->toArray(); for ($i = 0; $i < 20; $i++) { DB::table('empleados_proyectos')->insert(['proyecto_id' => $faker->randomElement($proyectos), 'empleado_rut' => $faker->randomElement($empleados), 'created_at' => 'now', 'updated_at' => 'now']); } }
public function EditarSave(Request $request, $id) { $validator = Validator::make($request->all(), ['proyecto' => 'required|alpha', 'cliente_id' => 'required|exists:clientes,id']); if ($validator->fails()) { $proyectos = Proyecto::all(); return view('cliente.proyecto', ["proyectos" => $proyectos, "errors" => $validator->errors()->all()]); } $proyecto = Proyecto::findOrFail($id); $clientes = Cliente::all(); $proyecto->proyecto = $request->proyecto; $proyecto->cliente_id = $request->cliente_id; $proyecto->save(); return redirect('cliente/proyecto'); }
/** * Display a listing of the resource. * * @return Response */ public function index() { $proyectos = Proyecto::all(); return view('proyecto.index', compact('proyectos')); }
public function list_proyectos() { $user = Auth::user(); $proyectos = Proyecto::all(); $ctin = Proyecto::where('tipo', 'CTIN')->get(); $carso = Proyecto::where('tipo', 'Carso')->get(); $operacion = Proyecto::where('tipo', 'Operación CTIN')->get(); //$becario = with('emergencia','direccion','academicas','habilidades'); return view('Admin/Proyecto/index', compact('user', 'proyectos', 'ctin', 'carso', 'operacion')); }
public function index() { $proyectos = Proyecto::all(); return view('proyecto.index', ['proyectos' => $proyectos]); }
/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function editarTarea($id_tarea) { $usuarios = Usuario::all(); $proyectos = Proyecto::all(); $estatus = Estatus::all(); $tareas = DB::table('tareas')->where('id_tarea', $id_tarea)->get(); return View('editartarea', compact('tareas', 'proyectos', 'usuarios', 'estatus')); }
public function Mostrar($id) { $encuesta = Encuesta::findOrFail($id); return view('mostrar_encuesta', ["encuesta" => $encuesta, "proyectos" => Proyecto::all(), "comunas" => Comuna::all()]); }