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/Http/Controllers/TiposLicenciasController.php b/app/Http/Controllers/TiposLicenciasController.php index dbe5238..c47a872 100644 --- a/app/Http/Controllers/TiposLicenciasController.php +++ b/app/Http/Controllers/TiposLicenciasController.php @@ -4,11 +4,9 @@ namespace App\Http\Controllers; use App\Models\tiposLicencias; use App\Exports\TiposLicenciasExport; -use PDF; -use Excel; - use Illuminate\Http\Request; - +use Maatwebsite\Excel\Facades\Excel; +use PDF; class TiposLicenciasController extends Controller { /** @@ -107,13 +105,13 @@ class TiposLicenciasController extends Controller public function exportExcel() { - return Excel::download(new tiposLicenciasExport(), 'tiposLicencias.xlsx'); + return Excel::download(new TiposLicenciasExport(), 'tiposLicencias.xlsx'); } public function exportPDF() { - $marcas = tiposLicencias::where('eliminado', 0)->get(); - $pdf = PDF::loadView('exports.tiposlicencias-pdf', ['tiposlicencias' => $marcas]); - return $pdf->download('tiposlicencias.pdf'); + $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/composer.json b/composer.json index fad34af..b0c91e1 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,8 @@ "laravel/framework": "^10.0", "laravel/sanctum": "^3.2", "laravel/tinker": "^2.8", - "laravel/ui": "^4.6" + "laravel/ui": "^4.6", + "maatwebsite/excel": "^3.1" }, "require-dev": { "fakerphp/faker": "^1.9.1", diff --git a/composer.lock b/composer.lock index b635439..a8240b6 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": "c6ed296b7f7a718cbed7be50543dfa5b", + "content-hash": "fe2612b7b0bc8d9bd48499fcb0b1cc71", "packages": [ { "name": "barryvdh/laravel-dompdf", @@ -212,6 +212,166 @@ ], "time": "2023-12-11T17:09:12+00:00" }, + { + "name": "composer/pcre", + "version": "3.3.2", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, + "require-dev": { + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-strict-rules": "^1 || ^2", + "phpunit/phpunit": "^8 || ^9" + }, + "type": "library", + "extra": { + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.2" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-11-12T16:29:46+00:00" + }, + { + "name": "composer/semver", + "version": "3.4.3", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.4.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-19T14:15:21+00:00" + }, { "name": "dflydev/dot-access-data", "version": "v3.0.3", @@ -742,6 +902,67 @@ ], "time": "2025-03-06T22:45:56+00:00" }, + { + "name": "ezyang/htmlpurifier", + "version": "v4.18.0", + "source": { + "type": "git", + "url": "https://github.com/ezyang/htmlpurifier.git", + "reference": "cb56001e54359df7ae76dc522d08845dc741621b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b", + "reference": "cb56001e54359df7ae76dc522d08845dc741621b", + "shasum": "" + }, + "require": { + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "require-dev": { + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-tidy": "Used for pretty-printing HTML" + }, + "type": "library", + "autoload": { + "files": [ + "library/HTMLPurifier.composer.php" + ], + "psr-0": { + "HTMLPurifier": "library/" + }, + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Edward Z. Yang", + "email": "admin@htmlpurifier.org", + "homepage": "http://ezyang.com" + } + ], + "description": "Standards compliant HTML filter written in PHP", + "homepage": "http://htmlpurifier.org/", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0" + }, + "time": "2024-11-01T03:51:45+00:00" + }, { "name": "fruitcake/php-cors", "version": "v1.3.0", @@ -2184,6 +2405,272 @@ ], "time": "2024-09-21T08:32:55+00:00" }, + { + "name": "maatwebsite/excel", + "version": "3.1.64", + "source": { + "type": "git", + "url": "https://github.com/SpartnerNL/Laravel-Excel.git", + "reference": "e25d44a2d91da9179cd2d7fec952313548597a79" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79", + "reference": "e25d44a2d91da9179cd2d7fec952313548597a79", + "shasum": "" + }, + "require": { + "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": { + "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-4": { + "Maatwebsite\\Excel\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Patrick Brouwers", + "email": "patrick@spartner.nl" + } + ], + "description": "Supercharged Excel exports and imports in Laravel", + "keywords": [ + "PHPExcel", + "batch", + "csv", + "excel", + "export", + "import", + "laravel", + "php", + "phpspreadsheet" + ], + "support": { + "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", + "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64" + }, + "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", + "version": "3.1.2", + "source": { + "type": "git", + "url": "https://github.com/maennchen/ZipStream-PHP.git", + "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f", + "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "ext-zlib": "*", + "php-64bit": "^8.2" + }, + "require-dev": { + "brianium/paratest": "^7.7", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.16", + "guzzlehttp/guzzle": "^7.5", + "mikey179/vfsstream": "^1.6", + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^11.0", + "vimeo/psalm": "^6.0" + }, + "suggest": { + "guzzlehttp/psr7": "^2.4", + "psr/http-message": "^2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "ZipStream\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paul Duncan", + "email": "pabs@pablotron.org" + }, + { + "name": "Jonatan Männchen", + "email": "jonatan@maennchen.ch" + }, + { + "name": "Jesse Donat", + "email": "donatj@gmail.com" + }, + { + "name": "András Kolesár", + "email": "kolesar@kolesar.hu" + } + ], + "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", + "keywords": [ + "stream", + "zip" + ], + "support": { + "issues": "https://github.com/maennchen/ZipStream-PHP/issues", + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2" + }, + "funding": [ + { + "url": "https://github.com/maennchen", + "type": "github" + } + ], + "time": "2025-01-27T12:07:53+00:00" + }, + { + "name": "markbaker/complex", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/MarkBaker/PHPComplex.git", + "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9", + "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.7" + }, + "type": "library", + "autoload": { + "psr-4": { + "Complex\\": "classes/src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@lange.demon.co.uk" + } + ], + "description": "PHP Class for working with complex numbers", + "homepage": "https://github.com/MarkBaker/PHPComplex", + "keywords": [ + "complex", + "mathematics" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" + }, + "time": "2022-12-06T16:21:08+00:00" + }, + { + "name": "markbaker/matrix", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/MarkBaker/PHPMatrix.git", + "reference": "728434227fe21be27ff6d86621a1b13107a2562c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c", + "reference": "728434227fe21be27ff6d86621a1b13107a2562c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpdocumentor/phpdocumentor": "2.*", + "phploc/phploc": "^4.0", + "phpmd/phpmd": "2.*", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "sebastian/phpcpd": "^4.0", + "squizlabs/php_codesniffer": "^3.7" + }, + "type": "library", + "autoload": { + "psr-4": { + "Matrix\\": "classes/src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@demon-angel.eu" + } + ], + "description": "PHP Class for working with matrices", + "homepage": "https://github.com/MarkBaker/PHPMatrix", + "keywords": [ + "mathematics", + "matrix", + "vector" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" + }, + "time": "2022-12-02T22:17:43+00:00" + }, { "name": "masterminds/html5", "version": "2.9.0", @@ -2752,6 +3239,112 @@ ], "time": "2024-11-21T10:36:35+00:00" }, + { + "name": "phpoffice/phpspreadsheet", + "version": "1.29.10", + "source": { + "type": "git", + "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", + "reference": "c80041b1628c4f18030407134fe88303661d4e4e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c80041b1628c4f18030407134fe88303661d4e4e", + "reference": "c80041b1628c4f18030407134fe88303661d4e4e", + "shasum": "" + }, + "require": { + "composer/pcre": "^1||^2||^3", + "ext-ctype": "*", + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-gd": "*", + "ext-iconv": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xml": "*", + "ext-xmlreader": "*", + "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": "^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": "^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": "^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.7", + "tecnickcom/tcpdf": "^6.5" + }, + "suggest": { + "dompdf/dompdf": "Option for rendering PDF with PDF Writer", + "ext-intl": "PHP Internationalization Functions", + "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", + "mpdf/mpdf": "Option for rendering PDF with PDF Writer", + "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "https://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker", + "homepage": "https://markbakeruk.net" + }, + { + "name": "Franck Lefevre", + "homepage": "https://rootslabs.net" + }, + { + "name": "Erik Tilt" + }, + { + "name": "Adrien Crivelli" + } + ], + "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", + "keywords": [ + "OpenXML", + "excel", + "gnumeric", + "ods", + "php", + "spreadsheet", + "xls", + "xlsx" + ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.10" + }, + "time": "2025-02-08T02:56:14+00:00" + }, { "name": "phpoption/phpoption", "version": "1.9.3", 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 @@ Lista de Marcas -

Lista de Marcas

+
+

Lista de Marcas

+

Fecha de generación: {{ date('d/m/Y H:i:s') }}

+
+ + + + @foreach($marcas as $marca) - - - - + + + + + + + @endforeach
ID MarcaEstadoFecha 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') }}
+ + diff --git a/resources/views/exports/prestamos-pdf.blade.php b/resources/views/exports/prestamos-pdf.blade.php new file mode 100644 index 0000000..6c81106 --- /dev/null +++ b/resources/views/exports/prestamos-pdf.blade.php @@ -0,0 +1,76 @@ + + + + Lista de Préstamos + + + +
+

Lista de Préstamos

+

Fecha de generación: {{ date('d/m/Y H:i:s') }}

+
+ + + + + + + + + + + + + + + + + + @foreach($prestamos as $prestamo) + + + + + + + + + + + + + @endforeach + +
IDSolicitanteDestinoSalidaLlegadaMotivoDomicilioPersonasChoferEstado
{{ $prestamo->id }}{{ $prestamo->nombre_solicitante }}{{ $prestamo->destino }}{{ $prestamo->fecha_hora_salida }}{{ $prestamo->fecha_hora_llegada }}{{ $prestamo->motivo }}{{ $prestamo->domicilio }}{{ $prestamo->numero_personas }}{{ $prestamo->chofer ? 'Sí' : 'No' }}{{ $prestamo->eliminado == 0 ? 'Activo' : 'Inactivo' }}
+ + \ No newline at end of file diff --git a/resources/views/marcas.blade.php b/resources/views/marcas.blade.php index f3688ed..b7bf6b8 100644 --- a/resources/views/marcas.blade.php +++ b/resources/views/marcas.blade.php @@ -91,12 +91,12 @@ @if($marca->eliminado == 0) - - Activo - + + Activo + @else - Inactivo + Inactivo @endif diff --git a/resources/views/prestamos.blade.php b/resources/views/prestamos.blade.php index 1ed2f24..6bac0e6 100644 --- a/resources/views/prestamos.blade.php +++ b/resources/views/prestamos.blade.php @@ -20,12 +20,30 @@

Gestión de Préstamos

- - + + + +
@@ -65,7 +83,7 @@ Fecha y Hora Llegada Motivo Domicilio - Numero de personas + Número de Personas Chofer Estado Acciones @@ -74,24 +92,69 @@ @foreach($prestamos as $prestamo) - {{ $prestamo->id }} - {{ $prestamo->nombre_solicitante }} - {{ $prestamo->destino }} - {{ $prestamo->fecha_hora_salida }} - {{ $prestamo->fecha_hora_llegada }} - {{ $prestamo->motivo }} - {{ $prestamo->domicilio }} - {{ $prestamo->numero_perosonas}} - {{ $prestamo->cofer }} - - - - + + #{{ $prestamo->id }} + + +
+ + {{ $prestamo->nombre_solicitante }} +
+ + +
+ + {{ $prestamo->destino }} +
+ + +
+ + {{ $prestamo->fecha_hora_salida }} +
+ + +
+ + {{ $prestamo->fecha_hora_llegada }} +
+ + +
+ + {{ $prestamo->motivo }} +
+ + +
+ + {{ $prestamo->domicilio }} +
+ + +
+ + {{ $prestamo->numero_personas }} +
+ + +
+ + + {{ $prestamo->chofer ? 'Sí' : 'No' }} + +
+ + + + Activo + + - +
@csrf @@ -99,7 +162,7 @@ - +
@@ -125,6 +188,3 @@ }, 3000); @endsection - - - diff --git a/resources/views/prestamosCrearEditar.blade.php b/resources/views/prestamosCrearEditar.blade.php index f067557..71ce1ac 100644 --- a/resources/views/prestamosCrearEditar.blade.php +++ b/resources/views/prestamosCrearEditar.blade.php @@ -46,13 +46,16 @@ - +
+ + +
@error('nombre_solicitante')

{{ $message }}

@enderror @@ -63,13 +66,16 @@ - +
+ + +
@error('destino')

{{ $message }}

@enderror @@ -80,12 +86,15 @@ - +
+ + +
@error('fecha_hora_salida')

{{ $message }}

@enderror @@ -96,12 +105,15 @@ - +
+ + +
@error('fecha_hora_llegada')

{{ $message }}

@enderror @@ -112,11 +124,14 @@ - +
+ + +
@error('motivo')

{{ $message }}

@enderror @@ -127,13 +142,16 @@ - +
+ + +
@error('domicilio')

{{ $message }}

@enderror @@ -144,28 +162,29 @@ - +
+ + +
@error('numero_personas')

{{ $message }}

@enderror -
- +
+ chofer ? 'checked' : '' }}> +
@@ -185,5 +204,4 @@
-@endsection - +@endsection \ No newline at end of file diff --git a/resources/views/usuarios.blade.php b/resources/views/usuarios.blade.php index efb4306..94b5232 100644 --- a/resources/views/usuarios.blade.php +++ b/resources/views/usuarios.blade.php @@ -76,15 +76,15 @@ - - - - - - - - - + + + + + + + + + @@ -93,22 +93,32 @@ @else - @foreach($usuarios as $usuario) + @foreach($usuarios as $index => $usuario) - + - - - - - + + + + +
IDNombreEmailApellidoPuestoCarreraTeléfonoEstadoAccionesNúmeroNombre Email Apellido Puesto Carrera Teléfono Estado Acciones
No hay usuarios registrados.
{{ $usuario->id }}{{ $index + 1 }} {{ $usuario->name }} {{ $usuario->email }}{{ $usuario->apellido }}{{ $usuario->puesto }}{{ $usuario->carrera }}{{ $usuario->telefono }} + {{ $usuario->email }} + + {{ $usuario->apellido }} + + {{ $usuario->puesto }} + + {{ $usuario->carrera }} + + {{ $usuario->telefono }} + @if($usuario->eliminado == 0) - - Activo + + Activo @else diff --git a/resources/views/usuariosCrearEditar.blade.php b/resources/views/usuariosCrearEditar.blade.php index d1826dd..2584cd8 100644 --- a/resources/views/usuariosCrearEditar.blade.php +++ b/resources/views/usuariosCrearEditar.blade.php @@ -34,48 +34,114 @@
- +
+
+ +
+ +
- +
+
+ +
+ +
- +
+
+ +
+ +
- +
+
+ +
+ +
- +
+
+ +
+ +
- +
+
+ +
+ +
- +
+
+ +
+ +
- +
+
+ +
+ +
- Cancelar + + Cancelar +
diff --git a/routes/web.php b/routes/web.php index 4a7bbe9..2c9fbe1 100644 --- a/routes/web.php +++ b/routes/web.php @@ -47,17 +47,24 @@ use App\Http\Controllers\PrestamoController; Route::resource('capacidades', CapacidadController::class); - Route::resource('prestamos',PrestamoController::class); - Route::get('marcas/excel', [MarcaController::class, 'exportExcel'])->name('marcas.excel'); - Route::get('marcas/pdf', [MarcaController::class, 'exportPDF'])->name('marcas.pdf'); + + Route::get('/marcas/excel', [MarcaController::class, 'exportExcel'])->name('marcas.excel'); + Route::get('/marcas/pdf', [MarcaController::class, 'exportPDF'])->name('marcas.pdf'); + + // Primero las rutas de exportación (más específicas) + Route::get('/prestamos/excel', [PrestamoController::class, 'exportExcel'])->name('prestamos.excel'); + Route::get('/prestamos/pdf', [PrestamoController::class, 'exportPDF'])->name('prestamos.pdf'); + + // Después la ruta de recurso (más general) + Route::resource('prestamos', PrestamoController::class); Route::get('/docentes/export/{format}', [DocentesController::class, 'export'])->name('docentes.export'); Route::get('/docentes/{id}/toggle-status', [DocentesController::class, 'toggleStatus'])->name('docentes.toggle-status'); -Route::get('tiposLicencias/excel', [TiposLicenciasController::class, 'exportExcel'])->name('tiposLicencias.excel'); -Route::get('tiposLicencias/pdf', [TiposLicenciasController::class, 'exportPDF'])->name('tiposLicencias.pdf'); + Route::get('tiposLicencias/excel', [TiposLicenciasController::class, 'exportExcel'])->name('tiposLicencias.excel'); + Route::get('tiposLicencias/pdf', [TiposLicenciasController::class, 'exportPDF'])->name('tiposLicencias.pdf'); // Rutas protegidas que requieren autenticación