/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { $convenios = \programa\Convenios::get()->where('id_escuela', $id); $licitaciones = \programa\Licitaciones::get()->where('id_escuela', $id); $asuntos = \programa\Asuntos::get()->where('id_escuela', $id); $representaciones = \programa\Representaciones::get()->where('id_escuela', $id); $becas = \programa\Becas::get()->where('id_escuela', $id); $eventos = \programa\Eventos::get()->where('id_escuela', $id); $oferta = \programa\Oferta::get()->where('id_escuela', $id); $reforma = \programa\Reforma::get()->where('id_escuela', $id); $escuela = Escuelas::findOrFail($id); return view('edit', compact('escuela', 'convenios', 'licitaciones', 'asuntos', 'representaciones', 'becas', 'eventos', 'oferta', 'reforma')); }
/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { $licitacion = Licitaciones::findOrFail($id); $licitacion->delete(); return ['message' => 'destroy']; }