diff --git a/anotaciones b/anotaciones new file mode 100644 index 0000000..c0f1886 --- /dev/null +++ b/anotaciones @@ -0,0 +1,23 @@ +yo + + +Docentes +Nombre +materia que imparte +no.tel +correo +tipo de licencia [es vigente la licencia o no] (opcional) + + +Chofer +Nombre +no.tel +correo +tipo de licencia [es vigente la licencia o no] (opcional) + + +Administradores +Nombre +no.tel +correo + diff --git a/app/Http/Controllers/DocentesController.php b/app/Http/Controllers/DocentesController.php new file mode 100644 index 0000000..ede6174 --- /dev/null +++ b/app/Http/Controllers/DocentesController.php @@ -0,0 +1,74 @@ + $docentes]); + } + + /** + * Show the form for creating a new resource. + */ + public function create() + { + $docentes = Docentes::all(); + return view('docentesCrearEditar',['docentes'=>$docentes]); + } + + /** + * Store a newly created resource in storage. + */ + public function store(Request $request) + { + $docente = new Docentes($request->all()); + $docente->save(); + return redirect()->route('docente.index')->with('success', 'Docente creado exitosamente.'); + } + /** + * Display the specified resource. + */ + public function show(Docentes $docente) + { + + } + + /** + * Show the form for editing the specified resource. + */ + public function edit($id) + { + $docente = Docentes::find($id); + + } + + /** + * Update the specified resource in storage. + */ + 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'); + } + + /** + * Remove the specified resource from storage. + */ + public function destroy($id) + { + $docente = Docentes::find($id); + $docente->delete(); + return redirect()->route('docente.index')->with('success', 'Docente eliminado correctamente'); + } +} diff --git a/app/Models/Docentes.php b/app/Models/Docentes.php new file mode 100644 index 0000000..8bd5954 --- /dev/null +++ b/app/Models/Docentes.php @@ -0,0 +1,19 @@ + + */ +class DocentesFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'nombre' => $this->faker->name, + 'telefono' => $this->faker->phoneNumber, + 'correo' => $this->faker->email, + 'tipo_licencia' => $this->faker->randomElement(['Vigente', 'No Vigente']), + 'materia' => $this->faker->randomElement(['Matemáticas', 'Programación', 'Base de datos', 'Sistemas Operativos', 'Redes']), + ]; + } +} diff --git a/database/migrations/2025_03_05_172529_create_docentes_table.php b/database/migrations/2025_03_05_172529_create_docentes_table.php new file mode 100644 index 0000000..aa78bd6 --- /dev/null +++ b/database/migrations/2025_03_05_172529_create_docentes_table.php @@ -0,0 +1,32 @@ +id(); + $table->string('nombre'); + $table->string('telefono'); + $table->string('correo'); + $table->string('tipo_licencia'); + $table->string('materia'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('docentes'); + } +}; diff --git a/database/seeders/DocentesSeeder.php b/database/seeders/DocentesSeeder.php new file mode 100644 index 0000000..06cbb1c --- /dev/null +++ b/database/seeders/DocentesSeeder.php @@ -0,0 +1,17 @@ + + + @if(session('success')) + + @endif + + @if(session('error')) + + @endif + +
+
+

Gestión de Docentes

+ + Crear Docente + +
+ + +
+
+
+ +
+ +
+
+ + @if(request('busqueda')) + + Limpiar + + @endif +
+
+ +
+ + + + + + + + + + + + + + @if($docentes->isEmpty()) + + + + @else + @foreach($docentes as $docente) + + + + + + + + + + @endforeach + @endif + +
IDNombreTeléfonoCorreoTipo de LicenciaMateriaAcciones
No hay docentes registrados.
{{ $docente->id }}{{ $docente->nombre }}{{ $docente->telefono }}{{ $docente->correo }}{{ $docente->tipo_licencia }}{{ $docente->materia }} +
+ + + +
+ @csrf + @method('DELETE') + +
+
+
+
+
+ + + +@endsection +{{-- End of Selection --}} diff --git a/resources/views/docentesCrearEditar.blade.php b/resources/views/docentesCrearEditar.blade.php new file mode 100644 index 0000000..9cab84d --- /dev/null +++ b/resources/views/docentesCrearEditar.blade.php @@ -0,0 +1,46 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+

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

+
+
+
+ @csrf + @if(isset($docente)) + @method('PUT') + @endif +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ +
+
+
+
+
+@endsection diff --git a/resources/views/layouts/dashboard.blade.php b/resources/views/layouts/dashboard.blade.php index 2f09da5..6482c65 100644 --- a/resources/views/layouts/dashboard.blade.php +++ b/resources/views/layouts/dashboard.blade.php @@ -69,6 +69,7 @@ class="pl-4 mt-2 space-y-1 text-sm"> +
  • @@ -116,7 +117,7 @@