diff --git a/app/Exports/MarcasExport.php b/app/Exports/MarcasExport.php
index e6c9ac6..f81ceb5 100644
--- a/app/Exports/MarcasExport.php
+++ b/app/Exports/MarcasExport.php
@@ -7,7 +7,6 @@ use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\WithHeadings;
class MarcasExport implements FromCollection, WithHeadings
-
{
/**
* Método que devuelve la colección de datos a exportar.
@@ -16,9 +15,7 @@ class MarcasExport implements FromCollection, WithHeadings
*/
public function collection()
{
- return Marca::where('eliminado', 0) // Solo marcas activas
- ->select('id', 'marca') // Selecciona los campos que deseas exportar
- ->get();
+ return Marca::where('eliminado', 0)->get();
}
/**
@@ -29,8 +26,11 @@ class MarcasExport implements FromCollection, WithHeadings
public function headings(): array
{
return [
- 'ID', // Encabezado para la columna ID
- 'Marca', // Encabezado para la columna Marca
+ 'ID',
+ 'Marca',
+ 'Estado',
+ 'Fecha de Creación',
+ 'Última Actualización'
];
}
}
diff --git a/app/Exports/PrestamosExport.php b/app/Exports/PrestamosExport.php
new file mode 100644
index 0000000..6a9f724
--- /dev/null
+++ b/app/Exports/PrestamosExport.php
@@ -0,0 +1,33 @@
+get();
+ }
+
+ public function headings(): array
+ {
+ return [
+ 'ID',
+ 'Nombre Solicitante',
+ 'Destino',
+ 'Fecha y Hora Salida',
+ 'Fecha y Hora Llegada',
+ 'Motivo',
+ 'Domicilio',
+ 'Número de Personas',
+ 'Chofer',
+ 'Estado',
+ 'Fecha de Creación',
+ 'Última Actualización'
+ ];
+ }
+}
\ No newline at end of file
diff --git a/app/Exports/UsuariosExport.php b/app/Exports/UsuariosExport.php
index 0a3dcc9..f7b83e5 100644
--- a/app/Exports/UsuariosExport.php
+++ b/app/Exports/UsuariosExport.php
@@ -10,15 +10,23 @@ class UsuariosExport implements FromCollection, WithHeadings
{
public function collection()
{
- return User::select('id', 'name', 'email')->get();
+ return User::select( 'name', 'email','apellido',
+ 'puesto',
+ 'carrera',
+ 'telefono',)->get();
}
public function headings(): array
{
return [
- 'ID',
- 'Nombre',
- 'Email'
+ 'nombre',
+ 'correo',
+ 'apellido',
+ 'puesto',
+ 'carrera',
+ 'telefono',
+ 'Fecha de Creación',
+ 'Última Actualización'
];
}
}
diff --git a/app/Exports/tiposLicenciasExport.php b/app/Exports/tiposLicenciasExport.php
new file mode 100644
index 0000000..430504f
--- /dev/null
+++ b/app/Exports/tiposLicenciasExport.php
@@ -0,0 +1,35 @@
+select('id', 'tipoLicencia') // Selecciona los campos que deseas exportar
+ ->get();
+ }
+
+ /**
+ * Método que define los encabezados de las columnas en el archivo Excel.
+ *
+ * @return array
+ */
+ public function headings(): array
+ {
+ return [
+ 'ID', // Encabezado para la columna ID
+ 'Tipo de licencia', // Encabezado para la columna Tipo de licencia
+ ];
+ }
+}
diff --git a/app/Http/Controllers/PrestamoController.php b/app/Http/Controllers/PrestamoController.php
index da28249..3014c21 100644
--- a/app/Http/Controllers/PrestamoController.php
+++ b/app/Http/Controllers/PrestamoController.php
@@ -2,17 +2,37 @@
namespace App\Http\Controllers;
-use App\Models\prestamo;
+use App\Models\Prestamo; // Asegúrate de que el modelo esté correctamente nombrado
use Illuminate\Http\Request;
+use App\Exports\PrestamosExport; // Asegúrate de tener esta clase de exportación
+use Maatwebsite\Excel\Facades\Excel;
+use PDF;
class PrestamoController extends Controller
{
/**
* Display a listing of the resource.
*/
- public function index()
+ public function index(Request $request)
{
- //
+ $busqueda = $request->busqueda;
+
+ if ($busqueda) {
+ // Busca en la columna 'nombre_solicitante' de la tabla 'prestamos'
+ $prestamos = Prestamo::where('nombre_solicitante', 'LIKE', "%{$busqueda}%")
+ ->where('eliminado', 0)
+ ->get();
+
+ if ($prestamos->isEmpty()) {
+ return redirect()->route('prestamo.index')
+ ->with('error', 'No existe ningún préstamo con el solicitante "' . $busqueda . '". Por favor, inténtalo de nuevo.');
+ }
+ } else {
+ // Si no hay búsqueda, mostrar todos los préstamos
+ $prestamos = Prestamo::where('eliminado', 0)->get();
+ }
+
+ return view('prestamos', ['prestamos' => $prestamos]);
}
/**
@@ -20,7 +40,7 @@ class PrestamoController extends Controller
*/
public function create()
{
- //
+ return view('prestamosCrearEditar', ['prestamo' => null]); // No se necesita pasar préstamos
}
/**
@@ -28,38 +48,98 @@ class PrestamoController extends Controller
*/
public function store(Request $request)
{
- //
- }
+ // Validación de datos
+ $request->validate([
+ 'nombre_solicitante' => 'required|string|max:255',
+ 'destino' => 'required|string|max:255',
+ 'fecha_hora_salida' => 'required|date',
+ 'fecha_hora_llegada' => 'required|date',
+ 'motivo' => 'required|string|max:255',
+ 'domicilio' => 'required|string|max:255',
+ 'numero_personas' => 'required|integer',
+ ]);
+ // Crea un nuevo préstamo
+ $prestamo = new Prestamo();
+ $prestamo->nombre_solicitante = $request->nombre_solicitante;
+ $prestamo->destino = $request->destino;
+ $prestamo->fecha_hora_salida = $request->fecha_hora_salida;
+ $prestamo->fecha_hora_llegada = $request->fecha_hora_llegada;
+ $prestamo->motivo = $request->motivo;
+ $prestamo->domicilio = $request->domicilio;
+ $prestamo->numero_personas = $request->numero_personas;
+ $prestamo->chofer = $request->has('chofer') ? 1 : 0; // Manejo del checkbox
+ $prestamo->eliminado = 0; // Marca como activo por defecto
+ $prestamo->save();
+ return redirect()->route('prestamos.index')->with('success', 'Préstamo creado exitosamente.');
+ }
/**
- * Display the specified resource.
+ * Show the form for editing the specified resource.
*/
- public function show(prestamo $prestamo)
+ public function edit($id)
{
- //
+ $prestamo = Prestamo::findOrFail($id); // Busca el préstamo por ID
+ return view('prestamosCrearEditar', ['prestamo' => $prestamo]); // Pasa el préstamo a la vista
}
/**
- * Show the form for editing the specified resource.
+ * Update the specified resource in storage.
*/
- public function edit(prestamo $prestamo)
+ public function update(Request $request, $id)
+{
+ // Validación de datos
+ $request->validate([
+ 'nombre_solicitante' => 'required|string|max:255',
+ 'destino' => 'required|string|max:255',
+ 'fecha_hora_salida' => 'required|date',
+ 'fecha_hora_llegada' => 'required|date',
+ 'motivo' => 'required|string|max:255',
+ 'domicilio' => 'required|string|max:255',
+ 'numero_personas' => 'required|integer',
+ ]);
+
+ $prestamo = Prestamo::findOrFail($id); // Encuentra el préstamo por ID
+ $prestamo->nombre_solicitante = $request->nombre_solicitante; // Actualiza el nombre del solicitante
+ $prestamo->destino = $request->destino; // Actualiza el destino
+ $prestamo->fecha_hora_salida = $request->fecha_hora_salida; // Actualiza la fecha y hora de salida
+ $prestamo->fecha_hora_llegada = $request->fecha_hora_llegada; // Actualiza la fecha y hora de llegada
+ $prestamo->motivo = $request->motivo; // Actualiza el motivo
+ $prestamo->domicilio = $request->domicilio; // Actualiza el domicilio
+ $prestamo->numero_personas = $request->numero_personas; // Actualiza el número de personas
+ $prestamo->chofer = $request->has('chofer') ? 1 : 0; // Manejo del checkbox
+ $prestamo->eliminado = 0; // Cambia el estado a activo si se está editando
+ $prestamo->save(); // Guarda los cambios
+
+ return redirect()->route('prestamos.index')->with('success', 'Préstamo actualizado correctamente.');
+}
+
+ /**
+ * Remove the specified resource from storage.
+ */
+ public function destroy($id)
{
- //
+ $prestamo = Prestamo::findOrFail($id); // Encuentra el préstamo por ID
+ $prestamo->eliminado = 1; // Cambia el estado a inactivo
+ $prestamo->save(); // Guarda los cambios
+
+ return redirect()->route('prestamos.index')->with('success', 'Préstamo inactivado correctamente.');
}
/**
- * Update the specified resource in storage.
+ * Export to Excel.
*/
- public function update(Request $request, prestamo $prestamo)
+ public function exportExcel()
{
- //
+ return Excel::download(new PrestamosExport, 'prestamos.xlsx');
}
/**
- * Remove the specified resource from storage.
+ * Export to PDF.
*/
- public function destroy(prestamo $prestamo)
+ public function exportPDF()
{
- //
+ $prestamos = Prestamo::where('eliminado', 0)->get();
+ $pdf = PDF::loadView('exports.prestamos-pdf', ['prestamos' => $prestamos]);
+ return $pdf->download('prestamos.pdf');
}
}
diff --git a/app/Http/Controllers/TiposLicenciasController.php b/app/Http/Controllers/TiposLicenciasController.php
index 1c63db7..c47a872 100644
--- a/app/Http/Controllers/TiposLicenciasController.php
+++ b/app/Http/Controllers/TiposLicenciasController.php
@@ -3,9 +3,10 @@
namespace App\Http\Controllers;
use App\Models\tiposLicencias;
-
+use App\Exports\TiposLicenciasExport;
use Illuminate\Http\Request;
-
+use Maatwebsite\Excel\Facades\Excel;
+use PDF;
class TiposLicenciasController extends Controller
{
/**
@@ -101,4 +102,16 @@ class TiposLicenciasController extends Controller
$tipoLicencia->save();
return redirect()->route('tiposLicencias.index')->with('success', 'Tipo de licencia eliminado exitosamente.');
}
-}
+
+ public function exportExcel()
+ {
+ return Excel::download(new TiposLicenciasExport(), 'tiposLicencias.xlsx');
+ }
+
+ public function exportPDF()
+ {
+ $tiposLicencias = TiposLicencias::where('eliminado', 0)->get();
+ $pdf = PDF::loadView('exports.tiposlicencias-pdf', ['tiposLicencias' => $tiposLicencias]);
+ return $pdf->download('tiposLicencias.pdf');
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/TiposVeiculosController.php b/app/Http/Controllers/TiposVeiculosController.php
index ee7a5ea..736c030 100644
--- a/app/Http/Controllers/TiposVeiculosController.php
+++ b/app/Http/Controllers/TiposVeiculosController.php
@@ -4,6 +4,7 @@ namespace App\Http\Controllers;
use App\Models\tiposVeiculos;
use Illuminate\Http\Request;
+use Barryvdh\DomPDF\Facade\Pdf;
class TiposVeiculosController extends Controller
{
@@ -108,4 +109,59 @@ class TiposVeiculosController extends Controller
$tiposVeiculos->save();
return redirect()->route('vehiculos.index')->with('success', 'Vehiculo eliminado exitosamente.');
}
+
+ public function exportExcel()
+ {
+ $tiposVeiculos = tiposVeiculos::all();
+
+ $headers = [
+ 'Content-Type' => 'text/csv',
+ 'Content-Disposition' => 'attachment; filename="tipos_vehiculos.csv"',
+ ];
+
+ $callback = function() use ($tiposVeiculos) {
+ $file = fopen('php://output', 'w');
+
+ // Encabezados
+ fputcsv($file, ['ID', 'Nombre', 'Tipo de Combustible', 'Estado', 'Fecha de Creación']);
+
+ // Datos
+ foreach ($tiposVeiculos as $vehiculo) {
+ $estado = $vehiculo->status ? 'Activo' : 'Inactivo';
+ $tipoCombustible = '';
+ switch($vehiculo->tipo_combustible) {
+ case 'gasolina_verde':
+ $tipoCombustible = 'Gasolina Verde';
+ break;
+ case 'gasolina_roja':
+ $tipoCombustible = 'Gasolina Roja';
+ break;
+ case 'diesel':
+ $tipoCombustible = 'Diesel';
+ break;
+ default:
+ $tipoCombustible = 'No especificado';
+ }
+
+ fputcsv($file, [
+ $vehiculo->id,
+ $vehiculo->nombre,
+ $tipoCombustible,
+ $estado,
+ $vehiculo->created_at->format('d/m/Y')
+ ]);
+ }
+
+ fclose($file);
+ };
+
+ return response()->stream($callback, 200, $headers);
+ }
+
+ public function exportPDF()
+ {
+ $tiposVeiculos = tiposVeiculos::all();
+ $pdf = PDF::loadView('exports.tipos_vehiculos_pdf', ['tiposVeiculos' => $tiposVeiculos]);
+ return $pdf->download('tipos_vehiculos.pdf');
+ }
}
diff --git a/app/Http/Controllers/usuariosController.php b/app/Http/Controllers/usuariosController.php
index 5fe3abf..0a332bf 100644
--- a/app/Http/Controllers/usuariosController.php
+++ b/app/Http/Controllers/usuariosController.php
@@ -7,6 +7,7 @@ use Illuminate\Http\Request;
use App\Exports\UsuariosExport;
use Maatwebsite\Excel\Facades\Excel;
use PDF; // Asegúrate de incluir la clase PDF
+use App\Models\Puesto;
class usuariosController extends Controller
{
@@ -38,7 +39,8 @@ class usuariosController extends Controller
*/
public function create()
{
- return view('usuariosCrearEditar'); // Vista para crear usuario
+ $puestos = Puesto::all();
+ return view('usuariosCrearEditar', ['usuario' => null, 'puestos' => $puestos]);
}
@@ -52,18 +54,18 @@ class usuariosController extends Controller
'name' => 'required|string|max:255',
'email' => 'required|string|email|max:255|unique:users',
'apellido' => 'required|string|max:255',
- 'puesto' => 'required|string|max:255',
+ 'puesto_id' => 'required|exists:puestos,id',
'carrera' => 'required|string|max:255',
'telefono' => 'required|string|max:255',
'password' => 'required|string|min:8|confirmed',
]);
- // Crear nuevo usuario
+ // Si la validación pasa, crea el usuario
$usuario = new User();
$usuario->name = $request->name;
$usuario->email = $request->email;
$usuario->apellido = $request->apellido;
- $usuario->puesto = $request->puesto;
+ $usuario->puesto_id = $request->puesto_id;
$usuario->carrera = $request->carrera;
$usuario->telefono = $request->telefono;
$usuario->password = bcrypt($request->password);
@@ -83,11 +85,14 @@ class usuariosController extends Controller
/**
* Show the form for editing the specified resource.
*/
- public function edit($id)
+ // ... existing code ...
+ public function edit($id)
{
- $usuario = User::findOrFail($id);
- return view('usuariosCrearEditar', compact('usuario')); // Vista para editar usuario
+ $user = User::findOrFail($id);
+ $puestos = Puesto::all();
+ return view('usuariosCrearEditar',['usuario' => $user, 'puestos' => $puestos]); // Asegúrate de que la clave sea 'usuario'
}
+// ... existing code ...
/**
@@ -100,7 +105,7 @@ class usuariosController extends Controller
'name' => 'required|string|max:255',
'email' => 'required|string|email|max:255',
'apellido' => 'required|string|max:255',
- 'puesto' => 'required|string|max:255',
+ //'puesto_id' => 'required|exists:puesto_id',
'carrera' => 'required|string|max:255',
'telefono' => 'required|string|max:255',
'password' => 'nullable|string|min:8|confirmed',
@@ -111,7 +116,7 @@ class usuariosController extends Controller
$usuario->name = $request->name;
$usuario->email = $request->email;
$usuario->apellido = $request->apellido;
- $usuario->puesto = $request->puesto;
+ $usuario->puesto_id = $request->puesto_id;
$usuario->carrera = $request->carrera;
$usuario->telefono = $request->telefono;
diff --git a/app/Models/User.php b/app/Models/User.php
index 4e5bc5f..fced612 100644
--- a/app/Models/User.php
+++ b/app/Models/User.php
@@ -7,6 +7,7 @@ use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
+use Illuminate\Database\Eloquent\Relations\HasOne;
class User extends Authenticatable
{
@@ -21,12 +22,13 @@ class User extends Authenticatable
'name',
'email',
'apellido',
- 'puesto',
+ 'puesto_id',
'carrera',
'telefono',
'password',
];
+
/**
* The attributes that should be hidden for serialization.
*
@@ -45,4 +47,8 @@ class User extends Authenticatable
protected $casts = [
'email_verified_at' => 'datetime',
];
+
+ public function puesto():HasOne{
+ return $this->hasOne(Puesto::class, 'id','puesto_id');
+ }
}
diff --git a/app/Models/prestamo.php b/app/Models/prestamo.php
index d763045..beab890 100644
--- a/app/Models/prestamo.php
+++ b/app/Models/prestamo.php
@@ -8,4 +8,17 @@ use Illuminate\Database\Eloquent\Model;
class prestamo extends Model
{
use HasFactory;
+protected $table = 'prestamos';
+
+protected $fillable = [
+ 'nombre_solicitante',
+ 'destino',
+ 'fecha_hora_salida',
+ 'fecha_hora_llegada',
+ 'motivo',
+ 'domicilio',
+ 'numero_personas',
+ 'chofer',
+
+];
}
diff --git a/app/Models/puesto.php b/app/Models/puesto.php
new file mode 100644
index 0000000..70b90a4
--- /dev/null
+++ b/app/Models/puesto.php
@@ -0,0 +1,11 @@
+=5.3.0",
- "phpoffice/phpexcel": "~1.8.0"
+ "composer/semver": "^3.3",
+ "ext-json": "*",
+ "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0",
+ "php": "^7.0||^8.0",
+ "phpoffice/phpspreadsheet": "^1.29.9",
+ "psr/simple-cache": "^1.0||^2.0||^3.0"
},
"require-dev": {
- "mockery/mockery": "~0.9",
- "orchestra/testbench": "~2.2.0@dev",
- "phpunit/phpunit": "~4.0"
+ "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
+ "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0",
+ "predis/predis": "^1.1"
},
"type": "library",
+ "extra": {
+ "laravel": {
+ "aliases": {
+ "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
+ },
+ "providers": [
+ "Maatwebsite\\Excel\\ExcelServiceProvider"
+ ]
+ }
+ },
"autoload": {
- "psr-0": {
+ "psr-4": {
"Maatwebsite\\Excel\\": "src/"
- },
- "classmap": [
- "src/Maatwebsite/Excel",
- "tests/TestCase.php"
- ]
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "LGPL"
+ "MIT"
],
"authors": [
{
- "name": "Maatwebsite.nl",
- "email": "patrick@maatwebsite.nl"
+ "name": "Patrick Brouwers",
+ "email": "patrick@spartner.nl"
}
],
- "description": "An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the power of PHPExcel",
+ "description": "Supercharged Excel exports and imports in Laravel",
"keywords": [
"PHPExcel",
"batch",
@@ -2314,13 +2466,25 @@
"excel",
"export",
"import",
- "laravel"
+ "laravel",
+ "php",
+ "phpspreadsheet"
],
"support": {
- "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
- "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/master"
+ "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
+ "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64"
},
- "time": "2014-07-10T09:06:07+00:00"
+ "funding": [
+ {
+ "url": "https://laravel-excel.com/commercial-support",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/patrickbrouwers",
+ "type": "github"
+ }
+ ],
+ "time": "2025-02-24T11:12:50+00:00"
},
{
"name": "maennchen/zipstream-php",
@@ -3075,80 +3239,18 @@
],
"time": "2024-11-21T10:36:35+00:00"
},
- {
- "name": "phpoffice/phpexcel",
- "version": "1.8.1",
- "source": {
- "type": "git",
- "url": "https://github.com/PHPOffice/PHPExcel.git",
- "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
- "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
- "shasum": ""
- },
- "require": {
- "ext-xml": "*",
- "ext-xmlwriter": "*",
- "php": ">=5.2.0"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "PHPExcel": "Classes/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL"
- ],
- "authors": [
- {
- "name": "Maarten Balliauw",
- "homepage": "http://blog.maartenballiauw.be"
- },
- {
- "name": "Mark Baker"
- },
- {
- "name": "Franck Lefevre",
- "homepage": "http://blog.rootslabs.net"
- },
- {
- "name": "Erik Tilt"
- }
- ],
- "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
- "homepage": "http://phpexcel.codeplex.com",
- "keywords": [
- "OpenXML",
- "excel",
- "php",
- "spreadsheet",
- "xls",
- "xlsx"
- ],
- "support": {
- "issues": "https://github.com/PHPOffice/PHPExcel/issues",
- "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
- },
- "abandoned": "phpoffice/phpspreadsheet",
- "time": "2015-05-01T07:00:55+00:00"
- },
{
"name": "phpoffice/phpspreadsheet",
- "version": "4.1.0",
+ "version": "1.29.10",
"source": {
"type": "git",
"url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
- "reference": "6ff18c3a8df3a945492f75ce455d77f7ad55dd5c"
+ "reference": "c80041b1628c4f18030407134fe88303661d4e4e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/6ff18c3a8df3a945492f75ce455d77f7ad55dd5c",
- "reference": "6ff18c3a8df3a945492f75ce455d77f7ad55dd5c",
+ "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c80041b1628c4f18030407134fe88303661d4e4e",
+ "reference": "c80041b1628c4f18030407134fe88303661d4e4e",
"shasum": ""
},
"require": {
@@ -3166,24 +3268,25 @@
"ext-xmlwriter": "*",
"ext-zip": "*",
"ext-zlib": "*",
+ "ezyang/htmlpurifier": "^4.15",
"maennchen/zipstream-php": "^2.1 || ^3.0",
"markbaker/complex": "^3.0",
"markbaker/matrix": "^3.0",
- "php": "^8.1",
+ "php": "^7.4 || ^8.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "dev-main",
- "dompdf/dompdf": "^2.0 || ^3.0",
+ "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
"friendsofphp/php-cs-fixer": "^3.2",
"mitoteam/jpgraph": "^10.3",
"mpdf/mpdf": "^8.1.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
- "phpunit/phpunit": "^10.5",
+ "phpunit/phpunit": "^8.5 || ^9.0",
"squizlabs/php_codesniffer": "^3.7",
"tecnickcom/tcpdf": "^6.5"
},
@@ -3238,9 +3341,9 @@
],
"support": {
"issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
- "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/4.1.0"
+ "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.10"
},
- "time": "2025-03-02T06:52:24+00:00"
+ "time": "2025-02-08T02:56:14+00:00"
},
{
"name": "phpoption/phpoption",
diff --git a/config/app.php b/config/app.php
index 07510ef..7615784 100644
--- a/config/app.php
+++ b/config/app.php
@@ -195,7 +195,7 @@ return [
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
-
+ Barryvdh\DomPDF\ServiceProvider::class,
],
@@ -212,6 +212,7 @@ return [
'aliases' => Facade::defaultAliases()->merge([
// 'ExampleClass' => App\Example\ExampleClass::class,
+ 'PDF' => Barryvdh\DomPDF\Facade\Pdf::class,
])->toArray(),
];
diff --git a/config/dompdf.php b/config/dompdf.php
new file mode 100644
index 0000000..35eef8f
--- /dev/null
+++ b/config/dompdf.php
@@ -0,0 +1,301 @@
+ false, // Throw an Exception on warnings from dompdf
+
+ 'public_path' => null, // Override the public path if needed
+
+ /*
+ * Dejavu Sans font is missing glyphs for converted entities, turn it off if you need to show € and £.
+ */
+ 'convert_entities' => true,
+
+ 'options' => [
+ /**
+ * The location of the DOMPDF font directory
+ *
+ * The location of the directory where DOMPDF will store fonts and font metrics
+ * Note: This directory must exist and be writable by the webserver process.
+ * *Please note the trailing slash.*
+ *
+ * Notes regarding fonts:
+ * Additional .afm font metrics can be added by executing load_font.php from command line.
+ *
+ * Only the original "Base 14 fonts" are present on all pdf viewers. Additional fonts must
+ * be embedded in the pdf file or the PDF may not display correctly. This can significantly
+ * increase file size unless font subsetting is enabled. Before embedding a font please
+ * review your rights under the font license.
+ *
+ * Any font specification in the source HTML is translated to the closest font available
+ * in the font directory.
+ *
+ * The pdf standard "Base 14 fonts" are:
+ * Courier, Courier-Bold, Courier-BoldOblique, Courier-Oblique,
+ * Helvetica, Helvetica-Bold, Helvetica-BoldOblique, Helvetica-Oblique,
+ * Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic,
+ * Symbol, ZapfDingbats.
+ */
+ 'font_dir' => storage_path('fonts'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782)
+
+ /**
+ * The location of the DOMPDF font cache directory
+ *
+ * This directory contains the cached font metrics for the fonts used by DOMPDF.
+ * This directory can be the same as DOMPDF_FONT_DIR
+ *
+ * Note: This directory must exist and be writable by the webserver process.
+ */
+ 'font_cache' => storage_path('fonts'),
+
+ /**
+ * The location of a temporary directory.
+ *
+ * The directory specified must be writeable by the webserver process.
+ * The temporary directory is required to download remote images and when
+ * using the PDFLib back end.
+ */
+ 'temp_dir' => sys_get_temp_dir(),
+
+ /**
+ * ==== IMPORTANT ====
+ *
+ * dompdf's "chroot": Prevents dompdf from accessing system files or other
+ * files on the webserver. All local files opened by dompdf must be in a
+ * subdirectory of this directory. DO NOT set it to '/' since this could
+ * allow an attacker to use dompdf to read any files on the server. This
+ * should be an absolute path.
+ * This is only checked on command line call by dompdf.php, but not by
+ * direct class use like:
+ * $dompdf = new DOMPDF(); $dompdf->load_html($htmldata); $dompdf->render(); $pdfdata = $dompdf->output();
+ */
+ 'chroot' => realpath(base_path()),
+
+ /**
+ * Protocol whitelist
+ *
+ * Protocols and PHP wrappers allowed in URIs, and the validation rules
+ * that determine if a resouce may be loaded. Full support is not guaranteed
+ * for the protocols/wrappers specified
+ * by this array.
+ *
+ * @var array
+ */
+ 'allowed_protocols' => [
+ 'data://' => ['rules' => []],
+ 'file://' => ['rules' => []],
+ 'http://' => ['rules' => []],
+ 'https://' => ['rules' => []],
+ ],
+
+ /**
+ * Operational artifact (log files, temporary files) path validation
+ */
+ 'artifactPathValidation' => null,
+
+ /**
+ * @var string
+ */
+ 'log_output_file' => null,
+
+ /**
+ * Whether to enable font subsetting or not.
+ */
+ 'enable_font_subsetting' => false,
+
+ /**
+ * The PDF rendering backend to use
+ *
+ * Valid settings are 'PDFLib', 'CPDF' (the bundled R&OS PDF class), 'GD' and
+ * 'auto'. 'auto' will look for PDFLib and use it if found, or if not it will
+ * fall back on CPDF. 'GD' renders PDFs to graphic files.
+ * {@link * Canvas_Factory} ultimately determines which rendering class to
+ * instantiate based on this setting.
+ *
+ * Both PDFLib & CPDF rendering backends provide sufficient rendering
+ * capabilities for dompdf, however additional features (e.g. object,
+ * image and font support, etc.) differ between backends. Please see
+ * {@link PDFLib_Adapter} for more information on the PDFLib backend
+ * and {@link CPDF_Adapter} and lib/class.pdf.php for more information
+ * on CPDF. Also see the documentation for each backend at the links
+ * below.
+ *
+ * The GD rendering backend is a little different than PDFLib and
+ * CPDF. Several features of CPDF and PDFLib are not supported or do
+ * not make any sense when creating image files. For example,
+ * multiple pages are not supported, nor are PDF 'objects'. Have a
+ * look at {@link GD_Adapter} for more information. GD support is
+ * experimental, so use it at your own risk.
+ *
+ * @link http://www.pdflib.com
+ * @link http://www.ros.co.nz/pdf
+ * @link http://www.php.net/image
+ */
+ 'pdf_backend' => 'CPDF',
+
+ /**
+ * html target media view which should be rendered into pdf.
+ * List of types and parsing rules for future extensions:
+ * http://www.w3.org/TR/REC-html40/types.html
+ * screen, tty, tv, projection, handheld, print, braille, aural, all
+ * Note: aural is deprecated in CSS 2.1 because it is replaced by speech in CSS 3.
+ * Note, even though the generated pdf file is intended for print output,
+ * the desired content might be different (e.g. screen or projection view of html file).
+ * Therefore allow specification of content here.
+ */
+ 'default_media_type' => 'screen',
+
+ /**
+ * The default paper size.
+ *
+ * North America standard is "letter"; other countries generally "a4"
+ *
+ * @see CPDF_Adapter::PAPER_SIZES for valid sizes ('letter', 'legal', 'A4', etc.)
+ */
+ 'default_paper_size' => 'a4',
+
+ /**
+ * The default paper orientation.
+ *
+ * The orientation of the page (portrait or landscape).
+ *
+ * @var string
+ */
+ 'default_paper_orientation' => 'portrait',
+
+ /**
+ * The default font family
+ *
+ * Used if no suitable fonts can be found. This must exist in the font folder.
+ *
+ * @var string
+ */
+ 'default_font' => 'serif',
+
+ /**
+ * Image DPI setting
+ *
+ * This setting determines the default DPI setting for images and fonts. The
+ * DPI may be overridden for inline images by explictly setting the
+ * image's width & height style attributes (i.e. if the image's native
+ * width is 600 pixels and you specify the image's width as 72 points,
+ * the image will have a DPI of 600 in the rendered PDF. The DPI of
+ * background images can not be overridden and is controlled entirely
+ * via this parameter.
+ *
+ * For the purposes of DOMPDF, pixels per inch (PPI) = dots per inch (DPI).
+ * If a size in html is given as px (or without unit as image size),
+ * this tells the corresponding size in pt.
+ * This adjusts the relative sizes to be similar to the rendering of the
+ * html page in a reference browser.
+ *
+ * In pdf, always 1 pt = 1/72 inch
+ *
+ * Rendering resolution of various browsers in px per inch:
+ * Windows Firefox and Internet Explorer:
+ * SystemControl->Display properties->FontResolution: Default:96, largefonts:120, custom:?
+ * Linux Firefox:
+ * about:config *resolution: Default:96
+ * (xorg screen dimension in mm and Desktop font dpi settings are ignored)
+ *
+ * Take care about extra font/image zoom factor of browser.
+ *
+ * In images, size in pixel attribute, img css style, are overriding
+ * the real image dimension in px for rendering.
+ *
+ * @var int
+ */
+ 'dpi' => 96,
+
+ /**
+ * Enable embedded PHP
+ *
+ * If this setting is set to true then DOMPDF will automatically evaluate embedded PHP contained
+ * within tags.
+ *
+ * ==== IMPORTANT ==== Enabling this for documents you do not trust (e.g. arbitrary remote html pages)
+ * is a security risk.
+ * Embedded scripts are run with the same level of system access available to dompdf.
+ * Set this option to false (recommended) if you wish to process untrusted documents.
+ * This setting may increase the risk of system exploit.
+ * Do not change this settings without understanding the consequences.
+ * Additional documentation is available on the dompdf wiki at:
+ * https://github.com/dompdf/dompdf/wiki
+ *
+ * @var bool
+ */
+ 'enable_php' => false,
+
+ /**
+ * Rnable inline JavaScript
+ *
+ * If this setting is set to true then DOMPDF will automatically insert JavaScript code contained
+ * within tags as written into the PDF.
+ * NOTE: This is PDF-based JavaScript to be executed by the PDF viewer,
+ * not browser-based JavaScript executed by Dompdf.
+ *
+ * @var bool
+ */
+ 'enable_javascript' => true,
+
+ /**
+ * Enable remote file access
+ *
+ * If this setting is set to true, DOMPDF will access remote sites for
+ * images and CSS files as required.
+ *
+ * ==== IMPORTANT ====
+ * This can be a security risk, in particular in combination with isPhpEnabled and
+ * allowing remote html code to be passed to $dompdf = new DOMPDF(); $dompdf->load_html(...);
+ * This allows anonymous users to download legally doubtful internet content which on
+ * tracing back appears to being downloaded by your server, or allows malicious php code
+ * in remote html pages to be executed by your server with your account privileges.
+ *
+ * This setting may increase the risk of system exploit. Do not change
+ * this settings without understanding the consequences. Additional
+ * documentation is available on the dompdf wiki at:
+ * https://github.com/dompdf/dompdf/wiki
+ *
+ * @var bool
+ */
+ 'enable_remote' => false,
+
+ /**
+ * List of allowed remote hosts
+ *
+ * Each value of the array must be a valid hostname.
+ *
+ * This will be used to filter which resources can be loaded in combination with
+ * isRemoteEnabled. If enable_remote is FALSE, then this will have no effect.
+ *
+ * Leave to NULL to allow any remote host.
+ *
+ * @var array|null
+ */
+ 'allowed_remote_hosts' => null,
+
+ /**
+ * A ratio applied to the fonts height to be more like browsers' line height
+ */
+ 'font_height_ratio' => 1.1,
+
+ /**
+ * Use the HTML5 Lib parser
+ *
+ * @deprecated This feature is now always on in dompdf 2.x
+ *
+ * @var bool
+ */
+ 'enable_html5_parser' => true,
+ ],
+
+];
diff --git a/database/migrations/2013_03_27_235747_create_puestos_table.php b/database/migrations/2013_03_27_235747_create_puestos_table.php
new file mode 100644
index 0000000..6198327
--- /dev/null
+++ b/database/migrations/2013_03_27_235747_create_puestos_table.php
@@ -0,0 +1,32 @@
+id();
+ $table->string('nombre');
+ $table->timestamps();
+ });
+ DB::table('puestos')->insert(['nombre'=> 'Administrativo']);
+ DB::table('puestos')->insert(['nombre'=> 'docente']);
+ DB::table('puestos')->insert(['nombre'=> 'coordinador']);
+ DB::table('puestos')->insert(['nombre'=> 'personal general']);
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('puestos');
+ }
+};
diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php
index db1a412..89dba93 100644
--- a/database/migrations/2014_10_12_000000_create_users_table.php
+++ b/database/migrations/2014_10_12_000000_create_users_table.php
@@ -17,12 +17,14 @@ return new class extends Migration
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('apellido')->nullable();
- $table->string('puesto')->nullable();
+ $table->unsignedBigInteger('puesto_id')->nullable();
$table->string('carrera')->nullable();
$table->string('telefono')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
+ $table->foreign('puesto_id')->references('id')->on('puestos');
+
});
DB::table('users')->insert([
'name'=> 'Administrador',
diff --git a/database/migrations/2025_03_27_174121_create_prestamos_table.php b/database/migrations/2025_03_27_174121_create_prestamos_table.php
index 1428b4e..2ceb81f 100644
--- a/database/migrations/2025_03_27_174121_create_prestamos_table.php
+++ b/database/migrations/2025_03_27_174121_create_prestamos_table.php
@@ -13,6 +13,14 @@ return new class extends Migration
{
Schema::create('prestamos', function (Blueprint $table) {
$table->id();
+ $table->string('nombre_solicitante');
+ $table->string('destino');
+ $table->dateTime('fecha_hora_salida');
+ $table->dateTime('fecha_hora_llegada');
+ $table->text('motivo');
+ $table->string('domicilio');
+ $table->integer('numero_personas');
+ $table->boolean('chofer')->default(false); // Opción de sí (true) o no (false)
$table->timestamps();
});
}
diff --git a/database/migrations/2025_03_27_183714_add_columneliminado_toprestamos.php b/database/migrations/2025_03_27_183714_add_columneliminado_toprestamos.php
new file mode 100644
index 0000000..239f581
--- /dev/null
+++ b/database/migrations/2025_03_27_183714_add_columneliminado_toprestamos.php
@@ -0,0 +1,28 @@
+boolean('eliminado')->default(false);
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::table('prestamos', function (Blueprint $table) {
+ $table->dropColumn('eliminado');
+ });
+ }
+};
diff --git a/resources/views/exports/marcas-pdf.blade.php b/resources/views/exports/marcas-pdf.blade.php
index da1b673..bcb628b 100644
--- a/resources/views/exports/marcas-pdf.blade.php
+++ b/resources/views/exports/marcas-pdf.blade.php
@@ -3,10 +3,14 @@
Fecha de generación: {{ date('d/m/Y H:i:s') }}
+ID | Marca | +Estado | +Fecha de Creación | +Última Actualización |
---|---|---|---|---|
{{ $marca->id }} | -{{ $marca->marca }} | -|||
{{ $marca->id }} | +{{ $marca->marca }} | +{{ $marca->eliminado == 0 ? 'Activo' : 'Inactivo' }} | +{{ $marca->created_at->format('d/m/Y H:i:s') }} | +{{ $marca->updated_at->format('d/m/Y H:i:s') }} | +