sergiomarquez778 2 days ago
parent
commit
193f318c17
  1. 39
      app/Exports/PrestamosExport.php
  2. 146
      app/Http/Controllers/PrestamoController.php
  3. 23
      app/Http/Controllers/TiposLicenciasController.php
  4. 3
      app/Models/prestamo.php
  5. 28
      database/migrations/2025_04_01_191325_add_estado_to_prestamos_table.php
  6. 28
      database/migrations/2025_04_01_192918_add_fecha_aceptacion_to_prestamos_table.php
  7. 20
      database/migrations/[timestamp]_add_fecha_aceptacion_to_prestamos_table.php
  8. 34
      resources/views/exports/prestamos-pdf.blade.php
  9. 141
      resources/views/prestamos/aceptar.blade.php
  10. 160
      resources/views/prestamos/historial.blade.php
  11. 14
      resources/views/tiposLicenciaCrearEditar.blade.php
  12. 2
      routes/web.php

39
app/Exports/PrestamosExport.php

@ -2,32 +2,55 @@
namespace App\Exports;
use App\Models\Prestamo;
use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\WithHeadings;
use Maatwebsite\Excel\Concerns\WithMapping;
class PrestamosExport implements FromCollection, WithHeadings
class PrestamosExport implements FromCollection, WithHeadings, WithMapping
{
protected $prestamos;
public function __construct($prestamos = null)
{
$this->prestamos = $prestamos;
}
public function collection()
{
return Prestamo::where('eliminado', 0)->get();
return $this->prestamos;
}
public function headings(): array
{
return [
'ID',
'Nombre Solicitante',
'Solicitante',
'Destino',
'Fecha y Hora Salida',
'Fecha y Hora Llegada',
'Fecha Salida',
'Fecha Llegada',
'Motivo',
'Domicilio',
'Número de Personas',
'Chofer',
'Estado',
'Fecha de Creación',
'Última Actualización'
'Fecha Actualización'
];
}
public function map($prestamo): array
{
return [
$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',
ucfirst($prestamo->estado),
$prestamo->updated_at->format('d/m/Y H:i')
];
}
}

146
app/Http/Controllers/PrestamoController.php

@ -48,40 +48,18 @@ 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',
], [
'nombre_solicitante.required' => 'El campo nombre solicitante es obligatorio.',
'destino.required' => 'El campo destino es obligatorio.',
'fecha_hora_salida.required' => 'El campo fecha y hora de salida es obligatorio.',
'fecha_hora_llegada.required' => 'El campo fecha y hora de llegada es obligatorio.',
'motivo.required' => 'El campo motivo es obligatorio.',
'domicilio.required' => 'El campo domicilio es obligatorio.',
'numero_personas.required' => 'El campo número de personas es obligatorio.',
]);
*/
// 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
// Preparar los datos
$datos = $request->all();
$datos['chofer'] = $request->has('chofer') ? 1 : 0; // Convertir 'on' a 1, o ausencia a 0
$prestamo = new Prestamo($datos);
$prestamo->estado = 'pendiente'; // Estado inicial
$prestamo->save();
return redirect()->route('prestamos.index')->with('success', 'Préstamo creado exitosamente.');
// Aquí puedes agregar notificaciones para los administradores
return redirect()->route('prestamos.index')
->with('success', 'Préstamo solicitado correctamente. Esperando aprobación.');
}
/**
@ -99,7 +77,6 @@ class PrestamoController extends Controller
public function update(Request $request, $id)
{
// Validación de datos
/*
$request->validate([
'nombre_solicitante' => 'required|string|max:255',
'destino' => 'required|string|max:255',
@ -108,16 +85,7 @@ class PrestamoController extends Controller
'motivo' => 'required|string|max:255',
'domicilio' => 'required|string|max:255',
'numero_personas' => 'required|integer',
], [
'nombre_solicitante.required' => 'El campo nombre solicitante es obligatorio.',
'destino.required' => 'El campo destino es obligatorio.',
'fecha_hora_salida.required' => 'El campo fecha y hora de salida es obligatorio.',
'fecha_hora_llegada.required' => 'El campo fecha y hora de llegada es obligatorio.',
'motivo.required' => 'El campo motivo es obligatorio.',
'domicilio.required' => 'El campo domicilio es obligatorio.',
'numero_personas.required' => 'El campo número de personas es obligatorio.',
]);
*/
$prestamo = Prestamo::findOrFail($id); // Encuentra el préstamo por ID
$prestamo->nombre_solicitante = $request->nombre_solicitante; // Actualiza el nombre del solicitante
@ -163,4 +131,98 @@ class PrestamoController extends Controller
$pdf = PDF::loadView('exports.prestamos-pdf', ['prestamos' => $prestamos]);
return $pdf->download('prestamos.pdf');
}
public function aceptados(Request $request)
{
$busqueda = $request->busqueda;
$prestamos = Prestamo::when($busqueda, function($query) use ($busqueda) {
return $query->where(function($q) use ($busqueda) {
$q->where('nombre_solicitante', 'LIKE', "%{$busqueda}%")
->orWhere('destino', 'LIKE', "%{$busqueda}%")
->orWhere('motivo', 'LIKE', "%{$busqueda}%");
});
})
->orderBy('created_at', 'desc')
->get();
return view('prestamos.aceptar', ['prestamos' => $prestamos]);
}
public function aceptar($id)
{
$prestamo = Prestamo::findOrFail($id);
$prestamo->estado = 'aceptado';
$prestamo->save();
// Aquí puedes agregar notificaciones si lo deseas
return redirect()->route('prestamos.aceptados')
->with('success', 'Préstamo aceptado correctamente');
}
public function rechazar($id)
{
$prestamo = Prestamo::findOrFail($id);
$prestamo->estado = 'rechazado';
$prestamo->save();
// Aquí puedes agregar notificaciones si lo deseas
return redirect()->route('prestamos.aceptados')
->with('success', 'Préstamo rechazado correctamente');
}
public function historial(Request $request)
{
$query = Prestamo::query()
->whereIn('estado', ['aceptado', 'rechazado']);
// Aplicar filtros de búsqueda
if ($request->busqueda) {
$query->where(function($q) use ($request) {
$q->where('nombre_solicitante', 'LIKE', "%{$request->busqueda}%")
->orWhere('destino', 'LIKE', "%{$request->busqueda}%")
->orWhere('motivo', 'LIKE', "%{$request->busqueda}%");
});
}
// Filtro por estado
if ($request->estado) {
$query->where('estado', $request->estado);
}
// Filtro por fechas
if ($request->fecha_desde) {
$query->whereDate('created_at', '>=', $request->fecha_desde);
}
if ($request->fecha_hasta) {
$query->whereDate('created_at', '<=', $request->fecha_hasta);
}
// Ordenar por fecha de actualización
$query->orderBy('updated_at', 'desc');
// Paginar resultados
$prestamos = $query->paginate(10);
return view('prestamos.historial', ['prestamos' => $prestamos]);
}
public function export($format)
{
$prestamos = Prestamo::whereIn('estado', ['aceptado', 'rechazado'])
->orderBy('updated_at', 'desc')
->get();
switch($format) {
case 'excel':
return Excel::download(new PrestamosExport($prestamos), 'historial_prestamos.xlsx');
case 'pdf':
$pdf = PDF::loadView('exports.prestamos-pdf', ['prestamos' => $prestamos]);
return $pdf->download('historial_prestamos.pdf');
default:
return redirect()->back()->with('error', 'Formato no soportado');
}
}
}

23
app/Http/Controllers/TiposLicenciasController.php

@ -59,6 +59,17 @@ class TiposLicenciasController extends Controller
*/
public function store(Request $request)
{
// Verificar si ya existe un tipo de licencia con el mismo nombre
$existe = tiposLicencias::where('tipoLicencia', $request->tipoLicencia)
->where('eliminado', 1)
->exists();
if ($existe) {
return redirect()->route('tiposLicencias.create')
->with('error', 'Ya existe un tipo de licencia con el nombre "' . $request->tipoLicencia . '". Por favor, ingrese un nombre diferente.')
->withInput();
}
$tipoLicencia = new TiposLicencias();
$tipoLicencia->tipoLicencia = $request->tipoLicencia;
$tipoLicencia->eliminado = 1;
@ -81,6 +92,18 @@ class TiposLicenciasController extends Controller
*/
public function update(Request $request, $id)
{
// Verificar si ya existe otro tipo de licencia con el mismo nombre
$existe = tiposLicencias::where('tipoLicencia', $request->tipoLicencia)
->where('id', '!=', $id)
->where('eliminado', 1)
->exists();
if ($existe) {
return redirect()->route('tiposLicencias.edit', $id)
->with('error', 'Ya existe un tipo de licencia con el nombre "' . $request->tipoLicencia . '". Por favor, ingrese un nombre diferente.')
->withInput();
}
$tipoLicencia = TiposLicencias::findOrFail($id);
$tipoLicencia->tipoLicencia = $request->tipoLicencia;
if ($request->has('eliminado')) {

3
app/Models/prestamo.php

@ -19,6 +19,7 @@ protected $fillable = [
'domicilio',
'numero_personas',
'chofer',
'estado',
'eliminado'
];
}

28
database/migrations/2025_04_01_191325_add_estado_to_prestamos_table.php

@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('prestamos', function (Blueprint $table) {
$table->enum('estado', ['pendiente', 'aceptado', 'rechazado'])->default('pendiente')->after('chofer');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('prestamos', function (Blueprint $table) {
$table->dropColumn('estado');
});
}
};

28
database/migrations/2025_04_01_192918_add_fecha_aceptacion_to_prestamos_table.php

@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('prestamos', function (Blueprint $table) {
//
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('prestamos', function (Blueprint $table) {
//
});
}
};

20
database/migrations/[timestamp]_add_fecha_aceptacion_to_prestamos_table.php

@ -0,0 +1,20 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddFechaAceptacionToPrestamosTable extends Migration
{
public function up()
{
Schema::table('prestamos', function (Blueprint $table) {
$table->timestamp('fecha_aceptacion')->nullable()->after('estado');
});
}
public function down()
{
Schema::table('prestamos', function (Blueprint $table) {
$table->dropColumn('fecha_aceptacion');
});
}
}

34
resources/views/exports/prestamos-pdf.blade.php

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Lista de Préstamos</title>
<title>Historial de Préstamos</title>
<style>
body {
font-family: Arial, sans-serif;
@ -20,24 +20,22 @@
th {
background-color: #f2f2f2;
}
h1 {
.header {
text-align: center;
margin-bottom: 20px;
}
.header {
margin-bottom: 20px;
.estado-aceptado {
color: green;
}
.footer {
margin-top: 20px;
text-align: right;
font-size: 10px;
.estado-rechazado {
color: red;
}
</style>
</head>
<body>
<div class="header">
<h1>Lista de Préstamos</h1>
<p>Fecha de generación: {{ date('d/m/Y H:i:s') }}</p>
<h2>Historial de Préstamos</h2>
<p>Fecha de generación: {{ now()->format('d/m/Y H:i') }}</p>
</div>
<table>
@ -46,12 +44,10 @@
<th>ID</th>
<th>Solicitante</th>
<th>Destino</th>
<th>Salida</th>
<th>Llegada</th>
<th>Fecha Salida</th>
<th>Fecha Llegada</th>
<th>Motivo</th>
<th>Domicilio</th>
<th>Personas</th>
<th>Chofer</th>
<th>Estado</th>
</tr>
</thead>
@ -61,13 +57,13 @@
<td>{{ $prestamo->id }}</td>
<td>{{ $prestamo->nombre_solicitante }}</td>
<td>{{ $prestamo->destino }}</td>
<td>{{ $prestamo->fecha_hora_salida }}</td>
<td>{{ $prestamo->fecha_hora_llegada }}</td>
<td>{{ \Carbon\Carbon::parse($prestamo->fecha_hora_salida)->format('d/m/Y H:i') }}</td>
<td>{{ \Carbon\Carbon::parse($prestamo->fecha_hora_llegada)->format('d/m/Y H:i') }}</td>
<td>{{ $prestamo->motivo }}</td>
<td>{{ $prestamo->domicilio }}</td>
<td>{{ $prestamo->numero_personas }}</td>
<td>{{ $prestamo->chofer ? 'Sí' : 'No' }}</td>
<td>{{ $prestamo->eliminado == 0 ? 'Activo' : 'Inactivo' }}</td>
<td class="estado-{{ $prestamo->estado }}">
{{ ucfirst($prestamo->estado) }}
</td>
</tr>
@endforeach
</tbody>

141
resources/views/prestamos/aceptar.blade.php

@ -0,0 +1,141 @@
@extends('layouts.dashboard')
@section('content')
<div class="container mx-auto px-4 py-6">
<!-- Mensajes de éxito/error -->
@if(session('success'))
<div id="success-message" class="bg-green-100 border border-green-400 text-green-700 px-4 py-3 rounded relative mb-4" role="alert">
{{ session('success') }}
</div>
@endif
@if(session('error'))
<div class="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative mb-4" role="alert">
<span class="block sm:inline">{{ session('error') }}</span>
</div>
@endif
<div class="bg-white rounded-lg shadow-lg">
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<h2 class="text-2xl font-bold">Aceptar Prestamos</h2>
</div>
<!-- Barra de búsqueda -->
<div class="p-4 border-b border-gray-200 bg-gray-50">
<form action="{{ route('prestamos.aceptados') }}" method="GET" class="flex gap-2">
<div class="relative w-full sm:w-64">
<input type="text"
name="busqueda"
placeholder="Buscar préstamo..."
value="{{ request('busqueda') }}"
class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<div class="absolute left-3 top-2.5 text-gray-400">
<i class="fas fa-search"></i>
</div>
</div>
<button type="submit" class="px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600">
Buscar
</button>
@if(request('busqueda'))
<a href="{{ route('prestamos.aceptados') }}" class="px-4 py-2 bg-gray-500 text-white rounded-lg hover:bg-gray-600">
Limpiar
</a>
@endif
</form>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Número</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Solicitante</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Destino</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Fecha Salida</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Fecha Llegada</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Motivo</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Domicilio</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Personas</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Chofer</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Estado</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Acciones</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($prestamos as $prestamo)
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $prestamo->id }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
<i class="fas fa-user text-blue-500 mr-2"></i>
{{ $prestamo->nombre_solicitante }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<i class="fas fa-map-marker-alt text-red-500 mr-2"></i>
{{ $prestamo->destino }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<i class="fas fa-calendar text-green-500 mr-2"></i>
{{ \Carbon\Carbon::parse($prestamo->fecha_hora_salida)->format('d/m/Y H:i') }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<i class="fas fa-calendar-check text-yellow-500 mr-2"></i>
{{ \Carbon\Carbon::parse($prestamo->fecha_hora_llegada)->format('d/m/Y H:i') }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $prestamo->motivo }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $prestamo->domicilio }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-center">{{ $prestamo->numero_personas }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $prestamo->chofer }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full
{{ $prestamo->estado === 'pendiente' ? 'bg-yellow-100 text-yellow-800' :
($prestamo->estado === 'aceptado' ? 'bg-green-100 text-green-800' : 'bg-red-100 text-red-800') }}">
{{ ucfirst($prestamo->estado) }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<div class="flex gap-2">
@if($prestamo->estado === 'pendiente')
<form action="{{ route('prestamos.aceptar', $prestamo->id) }}" method="POST" class="inline">
@csrf
<button type="submit" class="text-green-600 hover:text-green-900" title="Aceptar">
<i class="fas fa-check"></i>
</button>
</form>
<form action="{{ route('prestamos.rechazar', $prestamo->id) }}" method="POST" class="inline">
@csrf
<button type="submit" class="text-red-600 hover:text-red-900" title="Rechazar">
<i class="fas fa-times"></i>
</button>
</form>
@else
<span class="text-gray-400">
<i class="fas fa-check-circle"></i>
Procesado
</span>
@endif
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Desaparecer mensaje de éxito
var message = document.getElementById('success-message');
if (message) {
setTimeout(function() {
message.style.transition = 'opacity 0.5s ease';
message.style.opacity = '0';
setTimeout(function() {
message.remove();
}, 500);
}, 3000);
}
});
</script>
@endsection

160
resources/views/prestamos/historial.blade.php

@ -0,0 +1,160 @@
@extends('layouts.dashboard')
@section('content')
<div class="container mx-auto px-4 py-6">
<!-- Mensajes de éxito/error -->
@if(session('success'))
<div id="success-message" class="bg-green-100 border border-green-400 text-green-700 px-4 py-3 rounded relative mb-4" role="alert">
{{ session('success') }}
</div>
@endif
@if(session('error'))
<div class="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative mb-4" role="alert">
<span class="block sm:inline">{{ session('error') }}</span>
</div>
@endif
<div class="bg-white rounded-lg shadow-lg">
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<h2 class="text-2xl font-bold">Historial de Préstamos</h2>
<!-- Botones de exportación -->
<div class="flex gap-2">
<a href="{{ route('prestamos.export', ['format' => 'excel']) }}" class="text-gray-600 hover:text-green-700 p-2" title="Exportar a Excel">
<i class="fas fa-file-excel"></i>
</a>
<a href="{{ route('prestamos.export', ['format' => 'pdf']) }}" class="text-gray-600 hover:text-red-600 p-2" title="Exportar a PDF">
<i class="fas fa-file-pdf"></i>
</a>
<button onclick="window.print()" class="text-gray-600 hover:text-gray-800 p-2" title="Imprimir">
<i class="fas fa-print"></i>
</button>
</div>
</div>
<!-- Barra de búsqueda y filtros -->
<div class="p-4 border-b border-gray-200 bg-gray-50">
<form action="{{ route('prestamos.historial') }}" method="GET" class="flex flex-wrap gap-4">
<div class="relative flex-1 min-w-[200px]">
<input type="text"
name="busqueda"
placeholder="Buscar préstamo..."
value="{{ request('busqueda') }}"
class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<div class="absolute left-3 top-2.5 text-gray-400">
<i class="fas fa-search"></i>
</div>
</div>
<!-- Filtro de estado -->
<select name="estado" class="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<option value="">Todos los estados</option>
<option value="aceptado" {{ request('estado') === 'aceptado' ? 'selected' : '' }}>Aceptados</option>
<option value="rechazado" {{ request('estado') === 'rechazado' ? 'selected' : '' }}>Rechazados</option>
</select>
<!-- Filtro de fechas -->
<input type="date"
name="fecha_desde"
value="{{ request('fecha_desde') }}"
class="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
placeholder="Fecha desde">
<input type="date"
name="fecha_hasta"
value="{{ request('fecha_hasta') }}"
class="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
placeholder="Fecha hasta">
<button type="submit" class="px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600">
Filtrar
</button>
@if(request('busqueda') || request('estado') || request('fecha_desde') || request('fecha_hasta'))
<a href="{{ route('prestamos.historial') }}" class="px-4 py-2 bg-gray-500 text-white rounded-lg hover:bg-gray-600">
Limpiar
</a>
@endif
</form>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Número</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Solicitante</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Destino</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Fecha Salida</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Fecha Llegada</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Motivo</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Domicilio</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Personas</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Chofer</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Estado</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Fecha Actualización</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($prestamos as $prestamo)
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $prestamo->id }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
<i class="fas fa-user text-blue-500 mr-2"></i>
{{ $prestamo->nombre_solicitante }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<i class="fas fa-map-marker-alt text-red-500 mr-2"></i>
{{ $prestamo->destino }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<i class="fas fa-calendar text-green-500 mr-2"></i>
{{ \Carbon\Carbon::parse($prestamo->fecha_hora_salida)->format('d/m/Y H:i') }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<i class="fas fa-calendar-check text-yellow-500 mr-2"></i>
{{ \Carbon\Carbon::parse($prestamo->fecha_hora_llegada)->format('d/m/Y H:i') }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $prestamo->motivo }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $prestamo->domicilio }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-center">{{ $prestamo->numero_personas }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">{{ $prestamo->chofer }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full
{{ $prestamo->estado === 'aceptado' ? 'bg-green-100 text-green-800' : 'bg-red-100 text-red-800' }}">
{{ ucfirst($prestamo->estado) }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
{{ \Carbon\Carbon::parse($prestamo->updated_at)->format('d/m/Y H:i') }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<!-- Paginación -->
<div class="px-6 py-4 border-t border-gray-200">
{{ $prestamos->links() }}
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Desaparecer mensaje de éxito
var message = document.getElementById('success-message');
if (message) {
setTimeout(function() {
message.style.transition = 'opacity 0.5s ease';
message.style.opacity = '0';
setTimeout(function() {
message.remove();
}, 500);
}, 3000);
}
});
</script>
@endsection

14
resources/views/tiposLicenciaCrearEditar.blade.php

@ -17,16 +17,12 @@
</div>
<!-- Mensajes de error -->
@if($errors->any())
<div class="mb-6 bg-red-50 border-l-4 border-red-500 p-4 rounded-r-lg">
@if(session('error'))
<div class="mb-6 bg-red-100 border-l-4 border-red-500 p-4 rounded-r-lg">
<div class="flex items-center">
<i class="fas fa-exclamation-circle text-red-500 mr-3"></i>
<div class="text-red-700">
<ul>
@foreach($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
<i class="fas fa-exclamation-circle text-red-500 mr-3 text-xl"></i>
<div class="text-red-700 font-semibold">
{{ session('error') }}
</div>
</div>
</div>

2
routes/web.php

@ -58,9 +58,11 @@ use App\Http\Controllers\DespartamentoController;
// 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');
Route::get('/prestamos/export/{format}', [PrestamoController::class, 'export'])->name('prestamos.export');
Route::get('/prestamos/aceptados', [PrestamoController::class, 'aceptados'])->name('prestamos.aceptados');
Route::post('/prestamos/{id}/aceptar', [PrestamoController::class, 'aceptar'])->name('prestamos.aceptar');
Route::post('/prestamos/{id}/rechazar', [PrestamoController::class, 'rechazar'])->name('prestamos.rechazar');
Route::get('/prestamos/historial', [PrestamoController::class, 'historial'])->name('prestamos.historial');
// Después la ruta de recurso (más general)
Route::resource('prestamos', PrestamoController::class);

Loading…
Cancel
Save