From 88a7eac1ba8148d1b9e4f27351a29bdafe07c294 Mon Sep 17 00:00:00 2001 From: sergiomarquez778 Date: Thu, 6 Mar 2025 11:09:15 -0600 Subject: [PATCH] utui --- app/Http/Controllers/DocentesController.php | 12 +- .../Controllers/TiposVeiculosController.php | 96 ++++++++ app/Models/tiposVeiculos.php | 14 ++ database/factories/TiposVeiculosFactory.php | 24 ++ ..._06_162928_create_tipos_veiculos_table.php | 28 +++ database/seeders/TiposVeiculosSeeder.php | 17 ++ resources/views/docentes.blade.php | 92 ++++---- resources/views/docentesCrearEditar.blade.php | 216 +++++++++++++++--- resources/views/layouts/dashboard.blade.php | 6 +- resources/views/vehiculos.blade.php | 134 +++++++++++ .../views/vehiculosCrearEditar.blade.php | 135 +++++++++++ routes/web.php | 2 + 12 files changed, 693 insertions(+), 83 deletions(-) create mode 100644 app/Http/Controllers/TiposVeiculosController.php create mode 100644 app/Models/tiposVeiculos.php create mode 100644 database/factories/TiposVeiculosFactory.php create mode 100644 database/migrations/2025_03_06_162928_create_tipos_veiculos_table.php create mode 100644 database/seeders/TiposVeiculosSeeder.php create mode 100644 resources/views/vehiculos.blade.php create mode 100644 resources/views/vehiculosCrearEditar.blade.php diff --git a/app/Http/Controllers/DocentesController.php b/app/Http/Controllers/DocentesController.php index ede6174..97c82ea 100644 --- a/app/Http/Controllers/DocentesController.php +++ b/app/Http/Controllers/DocentesController.php @@ -32,7 +32,7 @@ class DocentesController extends Controller { $docente = new Docentes($request->all()); $docente->save(); - return redirect()->route('docente.index')->with('success', 'Docente creado exitosamente.'); + return redirect()->route('docentes.index')->with('success', 'Docente creado exitosamente.'); } /** * Display the specified resource. @@ -47,8 +47,9 @@ class DocentesController extends Controller */ public function edit($id) { + $docentes = Docentes::all(); $docente = Docentes::find($id); - + return view('docentesCrearEditar', ['docentes' => $docentes, 'docente' => $docente]); } /** @@ -57,9 +58,8 @@ class DocentesController extends Controller public function update(Request $request, $id) { $docente = Docentes::find($id); - $docente->fill($request->all()); - $docente->save(); - return redirect()->route('docente.index')->with('success', 'Docente actualizado correctamente'); + $docente->update($request->all()); + return redirect()->route('docentes.index')->with('success', 'Docente actualizado correctamente'); } /** @@ -69,6 +69,6 @@ class DocentesController extends Controller { $docente = Docentes::find($id); $docente->delete(); - return redirect()->route('docente.index')->with('success', 'Docente eliminado correctamente'); + return redirect()->route('docentes.index')->with('success', 'Docente eliminado correctamente'); } } diff --git a/app/Http/Controllers/TiposVeiculosController.php b/app/Http/Controllers/TiposVeiculosController.php new file mode 100644 index 0000000..6fdd6e6 --- /dev/null +++ b/app/Http/Controllers/TiposVeiculosController.php @@ -0,0 +1,96 @@ +busqueda; + + if($busqueda) { + $tiposVeiculos = tiposVeiculos::where('nombre', 'LIKE', "%{$busqueda}%")->get(); + + if($tiposVeiculos->count() == 0) { + return redirect()->route('tiposVeiculos.index') + ->with('error', value: 'No existe ningun tipo de vehiculo con el nombre "' . $busqueda . '". Por favor, inténtalo de nuevo.'); + } + + // Si solo hay una marca, mostrar sus detalles + if($tiposVeiculos->count() == 1) { + $tiposVeiculos = $tiposVeiculos->first(); + return redirect()->route('vehiculos.edit', $tiposVeiculos->id); + } + + // Si hay múltiples coincidencias, mostrar la lista filtrada + return view('vehiculos', ["tiposVeiculos" => $tiposVeiculos]); + } + + // Si no hay búsqueda, mostrar todas las marcas + $tiposVeiculos = tiposVeiculos::all(); + return view('vehiculos', ["tiposVeiculos" => $tiposVeiculos]); + } + + /** + * Show the form for creating a new resource. + */ + public function create() + { + $tiposVeiculos = tiposVeiculos::all(); + return view('vehiculosCrearEditar',['tiposVeiculos'=>$tiposVeiculos]); + } + + /** + * Store a newly created resource in storage. + */ + public function store(Request $request) + { + $tiposVeiculos = new tiposVeiculos($request->all()); + $tiposVeiculos->save(); + return redirect()->route('vehiculos.index')->with('success', 'Tipo de vehiculo creado exitosamente.'); + } + + /** + * Display the specified resource. + */ + public function show(tiposVeiculos $tiposVeiculos) + { + // + } + + /** + * Show the form for editing the specified resource. + */ + public function edit($id) + { + $tiposVeiculos = tiposVeiculos::find($id); + return view('vehiculosCrearEditar',['tiposVeiculos'=>$tiposVeiculos]); + } + + /** + * Update the specified resource in storage. + */ + public function update(Request $request, $id) + { + $tiposVeiculos = tiposVeiculos::find($id); + $tiposVeiculos->fill($request->all()); + $tiposVeiculos->save(); + return redirect()->route('vehiculos.index'); + } + + /** + * Remove the specified resource from storage. + */ + public function destroy($id) + { + $tiposVeiculos = tiposVeiculos::find($id); + $tiposVeiculos->delete(); + return redirect()->route('vehiculos.index')->with('success', 'Vehiculo eliminado exitosamente.'); + } +} diff --git a/app/Models/tiposVeiculos.php b/app/Models/tiposVeiculos.php new file mode 100644 index 0000000..7d9a9f9 --- /dev/null +++ b/app/Models/tiposVeiculos.php @@ -0,0 +1,14 @@ + + */ +class TiposVeiculosFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + "nombre"=> $this->faker->name(), + // + ]; + } +} diff --git a/database/migrations/2025_03_06_162928_create_tipos_veiculos_table.php b/database/migrations/2025_03_06_162928_create_tipos_veiculos_table.php new file mode 100644 index 0000000..5f82a27 --- /dev/null +++ b/database/migrations/2025_03_06_162928_create_tipos_veiculos_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('nombre'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('tipos_veiculos'); + } +}; diff --git a/database/seeders/TiposVeiculosSeeder.php b/database/seeders/TiposVeiculosSeeder.php new file mode 100644 index 0000000..49db04c --- /dev/null +++ b/database/seeders/TiposVeiculosSeeder.php @@ -0,0 +1,17 @@ + @extends('layouts.dashboard') @section('content') @@ -19,8 +19,10 @@

Gestión de Docentes

- - Crear Docente + + + Agregar
@@ -38,7 +40,7 @@
@if(request('busqueda')) @@ -54,44 +56,40 @@ ID Nombre - Teléfono - Correo - Tipo de Licencia - Materia Acciones - @if($docentes->isEmpty()) - - No hay docentes registrados. - - @else - @foreach($docentes as $docente) - - {{ $docente->id }} - {{ $docente->nombre }} - {{ $docente->telefono }} - {{ $docente->correo }} - {{ $docente->tipo_licencia }} - {{ $docente->materia }} - -
- - - -
- @csrf - @method('DELETE') - -
-
- - - @endforeach - @endif + @foreach($docentes as $docente) + + {{ $docente->id }} + + + {{ $docente->nombre }} + + +
+ + + +
+ @csrf + @method('DELETE') + +
+
+ + + @endforeach @@ -99,6 +97,22 @@ @endsection -{{-- End of Selection --}} + diff --git a/resources/views/docentesCrearEditar.blade.php b/resources/views/docentesCrearEditar.blade.php index 9cab84d..d2a44e9 100644 --- a/resources/views/docentesCrearEditar.blade.php +++ b/resources/views/docentesCrearEditar.blade.php @@ -2,45 +2,191 @@ @section('content')
-
-
-

{{ isset($docente) ? 'Editar Docente' : 'Crear Docente' }}

-
-
-
- @csrf - @if(isset($docente)) - @method('PUT') - @endif -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - +
+
+
+ +
+

+ {{ isset($docente) ? 'Editar Docente' : 'Nuevo Docente' }} +

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

{{ $message }}

+ @enderror +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + Cancelar + + +
+
+
+
+ + @endsection + + + + diff --git a/resources/views/layouts/dashboard.blade.php b/resources/views/layouts/dashboard.blade.php index 6482c65..66ecfa7 100644 --- a/resources/views/layouts/dashboard.blade.php +++ b/resources/views/layouts/dashboard.blade.php @@ -79,9 +79,9 @@
  • - - - Tipos + + + Tipos de Vehiculos
  • diff --git a/resources/views/vehiculos.blade.php b/resources/views/vehiculos.blade.php new file mode 100644 index 0000000..315da7b --- /dev/null +++ b/resources/views/vehiculos.blade.php @@ -0,0 +1,134 @@ +@extends('layouts.dashboard') + +@section('content') +
    + + @if(session('success')) + + @endif + + @if(session('error')) + + @endif + +
    +
    +

    Gestión de Vehículos

    + + + Agregar + +
    + + +
    +
    +
    + +
    + +
    +
    + + @if(request('busqueda')) + + Limpiar + + @endif +
    +
    + +
    + + + + + + + + + + @foreach($tiposVeiculos as $vehiculo) + + + + + + @endforeach + +
    IDVehículoAcciones
    {{ $vehiculo->id }} + + {{ $vehiculo->nombre }} + +
    + + + +
    + @csrf + @method('DELETE') + +
    +
    +
    +
    +
    +
    + + +@endsection + diff --git a/resources/views/vehiculosCrearEditar.blade.php b/resources/views/vehiculosCrearEditar.blade.php new file mode 100644 index 0000000..8713fef --- /dev/null +++ b/resources/views/vehiculosCrearEditar.blade.php @@ -0,0 +1,135 @@ +@extends('layouts.dashboard') + +@section('content') +
    +
    +
    +
    + +
    +

    + {{ isset($tipoVehiculo) ? 'Editar Vehículo' : 'Nuevo Vehículo' }} +

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

    {{ $message }}

    + @enderror +
    + + +
    + + Cancelar + + +
    +
    +
    +
    +
    +
    +
    + + +@endsection + + + diff --git a/routes/web.php b/routes/web.php index 2951b3d..8e7c548 100644 --- a/routes/web.php +++ b/routes/web.php @@ -5,6 +5,7 @@ use App\Http\Controllers\usuariosController; use App\Http\Controllers\HomeController; use App\Http\Controllers\MarcaController; use App\Http\Controllers\DocentesController; +use App\Http\Controllers\TiposVeiculosController; /* |-------------------------------------------------------------------------- | Web Routes @@ -24,6 +25,7 @@ Auth::routes(['register'=>true,'reset'=>false]); Route::resource('marca', MarcaController::class); Route::resource('docentes', DocentesController::class); +Route::resource('vehiculos', TiposVeiculosController::class); // Rutas protegidas que requieren autenticación Route::middleware(['auth'])->group(function () {