diff --git a/app/Http/Controllers/TiposLicenciasController.php b/app/Http/Controllers/TiposLicenciasController.php new file mode 100644 index 0000000..fd8d379 --- /dev/null +++ b/app/Http/Controllers/TiposLicenciasController.php @@ -0,0 +1,96 @@ +busqueda; + + if($busqueda) { + $tiposLicencias = TiposLicencias::where('nombre', 'LIKE', "%{$busqueda}%")->get(); + + if($tiposLicencias->count() == 0) { + return redirect()->route('tiposLicencias.index') + ->with('error', 'No existe ningún tipo de licencia con el nombre "' . $busqueda . '". Por favor, inténtalo de nuevo.'); + } + + // Si solo hay un tipo de licencia, mostrar sus detalles + if($tiposLicencias->count() == 1) { + $tipoLicencia = $tiposLicencias->first(); + return redirect()->route('tiposLicencias.edit', $tipoLicencia->id); + } + + // Si hay múltiples coincidencias, mostrar la lista filtrada + return view('tiposLicencias', ["tiposLicencias" => $tiposLicencias]); + } + + // Si no hay búsqueda, mostrar todos los tipos de licencias + $tiposLicencias = TiposLicencias::all(); + return view('tiposLicencias', ["tiposLicencias" => $tiposLicencias]); + } + + /** + * Show the form for creating a new resource. + */ + public function create() + { + $tiposLicencias = TiposLicencias::all(); + return view('tiposLicenciasCrearEditar',['tiposLicencias'=>$tiposLicencias]); + } + + /** + * Store a newly created resource in storage. + */ + public function store(Request $request) + { + $tipoLicencia = new TiposLicencias($request->all()); + $tipoLicencia->save(); + return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia creado exitosamente.'); + } + + /** + * Display the specified resource. + */ + public function show(TiposLicencias $tipoLicencia) + { + // + } + + /** + * Show the form for editing the specified resource. + */ + public function edit($id) + { + $tipoLicencia = TiposLicencias::find($id); + return view('tiposLicenciasCrearEditar',['tipoLicencia'=>$tipoLicencia]); + } + + /** + * Update the specified resource in storage. + */ + public function update(Request $request, $id) + { + $tipoLicencia = TiposLicencias::find($id); + $tipoLicencia->fill($request->all()); + $tipoLicencia->save(); + return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia actualizado exitosamente.'); + } + + /** + * Remove the specified resource from storage. + */ + public function destroy($id) + { + $tipoLicencia = TiposLicencias::find($id); + $tipoLicencia->delete(); + return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia eliminado exitosamente.'); + } +} diff --git a/app/Models/tiposLicencias.php b/app/Models/tiposLicencias.php new file mode 100644 index 0000000..285f5d9 --- /dev/null +++ b/app/Models/tiposLicencias.php @@ -0,0 +1,15 @@ + + */ +class TiposLicenciasFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/migrations/2025_03_13_143153_create_tipos_licencias_table.php b/database/migrations/2025_03_13_143153_create_tipos_licencias_table.php new file mode 100644 index 0000000..2e600ce --- /dev/null +++ b/database/migrations/2025_03_13_143153_create_tipos_licencias_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('tipoLicencia'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('tiposLicencias'); + } +}; diff --git a/database/seeders/TiposLicenciasSeeder.php b/database/seeders/TiposLicenciasSeeder.php new file mode 100644 index 0000000..bd22eb7 --- /dev/null +++ b/database/seeders/TiposLicenciasSeeder.php @@ -0,0 +1,17 @@ + + + @if(session('success')) + + @endif + + @if(session('error')) + + @endif + +
+
+

Gestión de Tipos de Licencias

+ + + Agregar + +
+ + +
+
+
+ +
+ +
+
+ + @if(request('busqueda')) + + Limpiar + + @endif +
+
+ +
+ + + + + + + + + + @foreach($tiposLicencias as $tipoLicencia) + + + + + + @endforeach + +
IDTipo de LicenciaAcciones
{{ $tipoLicencia->id }} + + {{ $tipoLicencia->nombre }} + +
+ + + +
+ @csrf + @method('DELETE') + +
+
+
+
+
+ + + +@endsection diff --git a/resources/views/tiposLicenciaCreaeEditar.blade.php b/resources/views/tiposLicenciaCreaeEditar.blade.php new file mode 100644 index 0000000..fd3e6f3 --- /dev/null +++ b/resources/views/tiposLicenciaCreaeEditar.blade.php @@ -0,0 +1,83 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+
+ +
+

+ {{ isset($tipoLicencia) ? 'Editar Tipo de Licencia' : 'Nuevo Tipo de Licencia' }} +

+
+ +
+
+ + + @if($errors->any()) +
+
+ +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+
+
+ @endif + + +
+ @csrf + @if(isset($tipoLicencia)) + @method('PUT') + @endif + +
+ +
+ +
+
+ +
+ +
+ @error('nombre') +

{{ $message }}

+ @enderror +
+ + +
+ + Cancelar + + +
+
+
+
+
+
+
+@endsection diff --git a/routes/web.php b/routes/web.php index 916dd06..f8d0108 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6,6 +6,7 @@ use App\Http\Controllers\HomeController; use App\Http\Controllers\MarcaController; use App\Http\Controllers\DocentesController; use App\Http\Controllers\TiposVeiculosController; +use App\Http\Controllers\TiposLicenciasController; /* |-------------------------------------------------------------------------- | Web Routes @@ -26,6 +27,7 @@ Auth::routes(['register'=>true,'reset'=>false]); Route::resource('marca', MarcaController::class); Route::resource('docentes', DocentesController::class); Route::resource('vehiculos', TiposVeiculosController::class); +Route::resource('tiposLicencias', TiposLicenciasController::class); // Rutas protegidas que requieren autenticación