public function inicio() { User::create(['cedula' => 123456, 'password' => '123456', 'nombre' => 'root', 'apellido' => 'root', 'telefono' => '5555555', 'email' => '*****@*****.**', 'tipo' => 'A', 'direccion' => 'root']); \App\tipo::create(['nombre_tipo' => 'Libro']); \App\genero::create(['nombre_genero' => 'Accion']); \App\autor::create(['nombre_autor' => 'Autor Prueba 1']); \App\autor::create(['nombre_autor' => 'Autor Prueba 2']); \App\autor::create(['nombre_autor' => 'Autor Prueba 3']); \App\user_cliente::create(['cedula' => '1234', 'nombre' => 'alguien', 'apellido' => 'alguien', 'telefono' => '555555', 'email' => '*****@*****.**', 'direccion' => 'alguna']); \App\textos::create(['id' => 1, 'id_tipo' => 1, 'id_genero' => 1, 'titulo' => 'Texto prueba 1', 'editorial' => 'Texto prueba 1', 'anyo_edicion' => \Carbon\Carbon::now()->format('Y/m/d'), 'isbn' => 'Texto prueba 1', 'num_pag' => 155, 'descripcion' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque, molestiae provident ipsa, possimus at eius illum harum quos laborum doloribus omnis ipsum voluptas rerum, reprehenderit sit quasi impedit quis consequatur.']); \App\textos::create(['id' => 'aaa', 'id_tipo' => 1, 'id_genero' => 1, 'titulo' => 'Texto prueba 1', 'editorial' => 'Texto prueba 2', 'anyo_edicion' => \Carbon\Carbon::now()->format('Y/m/d'), 'isbn' => 'Texto prueba 3', 'num_pag' => 156, 'descripcion' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. At alias provident impedit nostrum cupiditate aliquam, id. Animi praesentium corporis distinctio laudantium id unde beatae voluptas cumque tempore, ducimus delectus et?']); \App\autor_has_texto::create(['id_texto' => 1, 'id_autor' => 1]); \App\autor_has_texto::create(['id_texto' => 'aaa', 'id_autor' => 1]); Session::flash('message', 'Usuario creado correctamente'); return Redirect::to('/'); }
public function textoIndex() { $textos = textos::paginate(10); $opc = ["Titulo", "ISBN", "Editorial", "Identificador"]; $tip = tipo::lists('nombre_tipo'); $gen = genero::lists('nombre_genero'); return view('front.texto.index', compact('textos', 'tip', 'opc', 'gen')); }
/** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { if (textos::where('id_genero', '=', $id)->first() != null) { Session::flash('message-error', 'No se puede eliminar el género, existe un texto en el sistema que lo esta utilizando'); return Redirect::to('/genero/' . $id . '/edit'); } genero::destroy($id); Session::flash('message', 'genero de texto eliminado correctamente'); return Redirect::to('/genero'); }
public function showMultipleAutor(Request $request, $tiposId = 1, $generosId = 1) { $tipos = tipo::find($tiposId); $generos = genero::find($generosId); $arreglo = ['autores' => $autores = autor::find($request->input('autor_select')), 'tipos' => $tipos, 'generos' => $generos]; return view('texto.selectMultipleAutor', compact('arreglo')); }
public function generoEdit($id) { $arreglo = ['generos' => genero::all(), 'textoId' => $id]; return view('texto.folderEdit.generoEdit', compact('arreglo')); }
/** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { // $generos = genero::all(); return view('peliculas.create', compact('generos')); }