diff --git a/app/Exports/DocentesExport.php b/app/Exports/DocentesExport.php new file mode 100644 index 0000000..6c43a91 --- /dev/null +++ b/app/Exports/DocentesExport.php @@ -0,0 +1,33 @@ +docentes = $docentes; + } + + public function collection() + { + return $this->docentes; + } + + public function headings(): array + { + return [ + 'ID', + 'Nombre', + 'Teléfono', + 'Correo', + 'Tipo de Licencia', + 'Materia' + ]; + } +} \ No newline at end of file diff --git a/app/Http/Controllers/DocentesController.php b/app/Http/Controllers/DocentesController.php index 2f4ad9e..ecefb71 100644 --- a/app/Http/Controllers/DocentesController.php +++ b/app/Http/Controllers/DocentesController.php @@ -4,6 +4,9 @@ namespace App\Http\Controllers; use App\Models\Docentes; use Illuminate\Http\Request; +use Maatwebsite\Excel\Facades\Excel; +use Barryvdh\DomPDF\Facade\Pdf; +use App\Exports\DocentesExport; class DocentesController extends Controller { @@ -12,7 +15,26 @@ class DocentesController extends Controller */ public function index(Request $request) { - $docentes = Docentes::all(); + $busqueda = $request->busqueda; + + if ($busqueda) { + // Busca docentes que coincidan con el término de búsqueda + $docentes = Docentes::where(function($query) use ($busqueda) { + $query->where('nombre', 'LIKE', "%{$busqueda}%") + ->orWhere('correo', 'LIKE', "%{$busqueda}%") + ->orWhere('tipo_licencia', 'LIKE', "%{$busqueda}%") + ->orWhere('materia', 'LIKE', "%{$busqueda}%"); + })->get(); + + if ($docentes->isEmpty()) { + return redirect()->route('docentes.index') + ->with('error', 'No existe ningún docente con el término "' . $busqueda . '". Por favor, inténtalo de nuevo.'); + } + } else { + // Si no hay búsqueda, mostrar todos los docentes + $docentes = Docentes::all(); + } + return view('docentes', ['docentes' => $docentes]); } @@ -58,7 +80,8 @@ class DocentesController extends Controller public function update(Request $request, $id) { $docente = Docentes::find($id); - $docente->update($request->all()); + $docente->fill($request->all()); + $docente->save(); return redirect()->route('docentes.index')->with('success', 'Docente actualizado correctamente'); } @@ -68,7 +91,35 @@ class DocentesController extends Controller public function destroy($id) { $docente = Docentes::find($id); - $docente->delete(); - return redirect()->route('docentes.index')->with('success', 'Docente eliminado correctamente'); + $docente->status = false; + $docente->save(); + return redirect()->route('docentes.index')->with('success', 'Docente desactivado correctamente'); + } + + public function toggleStatus($id) + { + $docente = Docentes::find($id); + $docente->status = !$docente->status; + $docente->save(); + + $mensaje = $docente->status ? 'Docente activado correctamente' : 'Docente desactivado correctamente'; + return redirect()->route('docentes.index')->with('success', $mensaje); + } + + public function export($format) + { + $docentes = Docentes::all(); + + switch($format) { + case 'csv': + return Excel::download(new DocentesExport($docentes), 'docentes.csv', \Maatwebsite\Excel\Excel::CSV); + case 'excel': + return Excel::download(new DocentesExport($docentes), 'docentes.xlsx'); + case 'pdf': + return PDF::loadView('exports.docentes', ['docentes' => $docentes]) + ->download('docentes.pdf'); + default: + return redirect()->back()->with('error', 'Formato no soportado'); + } } } diff --git a/app/Http/Controllers/TiposLicenciasController.php b/app/Http/Controllers/TiposLicenciasController.php index 0095913..1c63db7 100644 --- a/app/Http/Controllers/TiposLicenciasController.php +++ b/app/Http/Controllers/TiposLicenciasController.php @@ -16,26 +16,23 @@ class TiposLicenciasController extends Controller $busqueda = $request->busqueda; if($busqueda) { - $tiposLicencias = TiposLicencias::where('tipoLicencia', 'LIKE', "%{$busqueda}%")->get(); + $tiposLicencias = TiposLicencias::where('tipoLicencia', 'LIKE', "%{$busqueda}%")->where('eliminado', 1)->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('tiposLicencia', ["tiposLicencias" => $tiposLicencias]); // Cambiado aquí + return view('tiposLicencia', ["tiposLicencias" => $tiposLicencias]); } - // Si no hay búsqueda, mostrar todos los tipos de licencias - $tiposLicencias = TiposLicencias::all(); - return view('tiposLicencia', ["tiposLicencias" => $tiposLicencias]); // Cambiado aquí + $tiposLicencias = TiposLicencias::where('eliminado', 1)->get(); + return view('tiposLicencia', ["tiposLicencias" => $tiposLicencias]); } /** @@ -51,47 +48,57 @@ class TiposLicenciasController extends Controller * Store a newly created resource in storage. */ public function store(Request $request) -{ - // Crear una nueva instancia de TiposLicencias - $tipoLicencia = new TiposLicencias(); - $tipoLicencia->tipoLicencia = $request->tipoLicencia; // Asigna el nombre ingresado por el usuario - $tipoLicencia->save(); // Guarda el nuevo tipo de licencia en la base de datos + { + $tipoLicencia = new TiposLicencias(); + $tipoLicencia->tipoLicencia = $request->tipoLicencia; + $tipoLicencia->eliminado = 1; + $tipoLicencia->save(); - // Redirige a la lista de tipos de licencias con un mensaje de éxito - return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia creado exitosamente.'); -} + return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia creado exitosamente.'); + } -public function edit($id) -{ - // Busca el tipo de licencia por ID - $tipoLicencia = TiposLicencias::findOrFail($id); + public function edit($id) + { + // Busca el tipo de licencia por ID + $tipoLicencia = TiposLicencias::findOrFail($id); + + // Retorna la vista con el tipo de licencia para editar + return view('tiposLicenciaCrearEditar', ['tipoLicencia' => $tipoLicencia]); + } - // Retorna la vista con el tipo de licencia para editar - return view('tiposLicenciaCrearEditar', ['tipoLicencia' => $tipoLicencia]); -} /** * Update the specified resource in storage. */ public function update(Request $request, $id) { - // Busca el tipo de licencia por ID $tipoLicencia = TiposLicencias::findOrFail($id); + $tipoLicencia->tipoLicencia = $request->tipoLicencia; + if ($request->has('eliminado')) { + $tipoLicencia->eliminado = $request->eliminado; + } + $tipoLicencia->save(); - // Actualiza el nombre del tipo de licencia - $tipoLicencia->tipoLicencia = $request->tipoLicencia; // Asigna el nuevo nombre ingresado por el usuario - $tipoLicencia->save(); // Guarda los cambios - - // Redirige a la lista de tipos de licencias con un mensaje de éxito return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia actualizado exitosamente.'); } + public function toggleStatus($id) + { + $tipoLicencia = TiposLicencias::findOrFail($id); + $tipoLicencia->eliminado = !$tipoLicencia->eliminado; + $tipoLicencia->save(); + + $mensaje = $tipoLicencia->eliminado ? 'Tipo de licencia activado exitosamente.' : 'Tipo de licencia desactivado exitosamente.'; + return redirect()->route('tiposLicencias.index')->with('success', $mensaje); + } + /** * Remove the specified resource from storage. */ public function destroy($id) { - $tipoLicencia = TiposLicencias::find($id); - $tipoLicencia->delete(); + $tipoLicencia = TiposLicencias::findOrFail($id); + $tipoLicencia->eliminado = 0; + $tipoLicencia->save(); return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia eliminado exitosamente.'); } } diff --git a/app/Models/Docentes.php b/app/Models/Docentes.php index 8bd5954..ff46d73 100644 --- a/app/Models/Docentes.php +++ b/app/Models/Docentes.php @@ -14,6 +14,7 @@ class Docentes extends Model 'telefono', 'correo', 'tipo_licencia', - 'materia' + 'materia', + 'status' ]; } diff --git a/app/Models/tiposLicencias.php b/app/Models/tiposLicencias.php index 285f5d9..2703839 100644 --- a/app/Models/tiposLicencias.php +++ b/app/Models/tiposLicencias.php @@ -11,5 +11,5 @@ class tiposLicencias extends Model protected $table = 'tiposLicencias'; - protected $fillable = ['nombre']; + protected $fillable = ['nombre', 'eliminado']; } diff --git a/composer.json b/composer.json index 2c5f50d..7e4b466 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,12 @@ "laravel/tinker": "^2.8", "laravel/ui": "^4.6", "maatwebsite/excel": "^1.1", +<<<<<<< HEAD "phpoffice/phpspreadsheet": "^4.1" +======= + "phpoffice/phpspreadsheet": "^4.1", + "psr/simple-cache": "2.0" +>>>>>>> 808a4a99e0ba6f66a69b363ca9c10dd59496c060 }, "require-dev": { "fakerphp/faker": "^1.9.1", diff --git a/composer.lock b/composer.lock index f8586b8..2089c77 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "acb583cdead6464e77a88f1ff4c131d6", + "content-hash": "c0f0a026d64d98ad86849a80b4a5135b", "packages": [ { "name": "barryvdh/laravel-dompdf", @@ -3680,16 +3680,16 @@ }, { "name": "psr/simple-cache", - "version": "3.0.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/simple-cache.git", - "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", - "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/8707bf3cea6f710bf6ef05491234e3ab06f6432a", + "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a", "shasum": "" }, "require": { @@ -3698,7 +3698,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -3725,9 +3725,9 @@ "simple-cache" ], "support": { - "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + "source": "https://github.com/php-fig/simple-cache/tree/2.0.0" }, - "time": "2021-10-29T13:26:27+00:00" + "time": "2021-10-29T13:22:09+00:00" }, { "name": "psy/psysh", diff --git a/database/migrations/2025_03_27_054337_add_status_to_docentes_table.php b/database/migrations/2025_03_27_054337_add_status_to_docentes_table.php new file mode 100644 index 0000000..921a4d6 --- /dev/null +++ b/database/migrations/2025_03_27_054337_add_status_to_docentes_table.php @@ -0,0 +1,28 @@ +boolean('status')->default(true)->after('materia'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('docentes', function (Blueprint $table) { + $table->dropColumn('status'); + }); + } +}; diff --git a/database/migrations/2025_03_27_143601_add_status_to_tipos_licencias_table.php b/database/migrations/2025_03_27_143601_add_status_to_tipos_licencias_table.php new file mode 100644 index 0000000..16977d5 --- /dev/null +++ b/database/migrations/2025_03_27_143601_add_status_to_tipos_licencias_table.php @@ -0,0 +1,28 @@ +boolean('status')->default(true); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('tiposLicencias', function (Blueprint $table) { + $table->dropColumn('status'); + }); + } +}; diff --git a/database/migrations/2025_03_27_144121_rename_status_to_eliminado_in_tipos_licencias.php b/database/migrations/2025_03_27_144121_rename_status_to_eliminado_in_tipos_licencias.php new file mode 100644 index 0000000..e242bc1 --- /dev/null +++ b/database/migrations/2025_03_27_144121_rename_status_to_eliminado_in_tipos_licencias.php @@ -0,0 +1,28 @@ +renameColumn('status', 'eliminado'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('tiposLicencias', function (Blueprint $table) { + $table->renameColumn('eliminado', 'status'); + }); + } +}; diff --git a/resources/views/docentes.blade.php b/resources/views/docentes.blade.php index 58a05a1..c1c0ebc 100644 --- a/resources/views/docentes.blade.php +++ b/resources/views/docentes.blade.php @@ -30,7 +30,25 @@ - +
+ + + + + + + + + + + +
+ +
@@ -44,7 +62,7 @@
@if(request('busqueda')) @@ -64,6 +82,7 @@ Correo Tipo de Licencia Materia + Estado Acciones @@ -79,25 +98,20 @@ {{ $docente->correo }} {{ $docente->tipo_licencia }} {{ $docente->materia }} + + + {{ $docente->status ? 'Activo' : 'Inactivo' }} + +
- + - - @csrf - @method('DELETE') - - + + +
@@ -172,10 +186,29 @@ document.addEventListener('DOMContentLoaded', function() { new DataTable('#docentes-table', { layout: { topStart: { - buttons: ['copy', 'csv', 'excel', 'pdf', 'print'] + buttons: ['copy', 'csv', 'excel', 'pdf'] } } }); + +function copyToClipboard() { + const table = document.querySelector('table'); + const range = document.createRange(); + range.selectNode(table); + window.getSelection().removeAllRanges(); + window.getSelection().addRange(range); + document.execCommand('copy'); + window.getSelection().removeAllRanges(); + + // Mostrar mensaje de éxito + Swal.fire({ + icon: 'success', + title: 'Copiado', + text: 'La tabla ha sido copiada al portapapeles', + timer: 1500, + showConfirmButton: false + }); +} @endsection diff --git a/resources/views/docentesCrearEditar.blade.php b/resources/views/docentesCrearEditar.blade.php index f5d33f3..34b26f3 100644 --- a/resources/views/docentesCrearEditar.blade.php +++ b/resources/views/docentesCrearEditar.blade.php @@ -25,9 +25,27 @@ -
- - +
+ +
+ +
+ +
+
+ @error('tipo_licencia') +

{{ $message }}

+ @enderror
diff --git a/resources/views/exports/docentes.blade.php b/resources/views/exports/docentes.blade.php new file mode 100644 index 0000000..09121a1 --- /dev/null +++ b/resources/views/exports/docentes.blade.php @@ -0,0 +1,47 @@ + + + + Docentes + + + +

Lista de Docentes

+ + + + + + + + + + + + + @foreach($docentes as $docente) + + + + + + + + + @endforeach + +
IDNombreTeléfonoCorreoTipo de LicenciaMateria
{{ $docente->id }}{{ $docente->nombre }}{{ $docente->telefono }}{{ $docente->correo }}{{ $docente->tipo_licencia }}{{ $docente->materia }}
+ + \ No newline at end of file diff --git a/resources/views/tiposLicencia.blade.php b/resources/views/tiposLicencia.blade.php index d2824eb..612c4c3 100644 --- a/resources/views/tiposLicencia.blade.php +++ b/resources/views/tiposLicencia.blade.php @@ -72,6 +72,10 @@ class="text-blue-600 hover:text-blue-900"> + + +
name('tiposLicencias.toggle-status'); Route::resource('capacidades', CapacidadController::class); Route::get('marcas/excel', [MarcaController::class, 'exportExcel'])->name('marcas.excel'); Route::get('marcas/pdf', [MarcaController::class, 'exportPDF'])->name('marcas.pdf'); - +Route::get('/docentes/export/{format}', [DocentesController::class, 'export'])->name('docentes.export'); +Route::get('/docentes/{id}/toggle-status', [DocentesController::class, 'toggleStatus'])->name('docentes.toggle-status'); // Rutas protegidas que requieren autenticación Route::middleware(['auth'])->group(function () {