AJustes generales y login

This commit is contained in:
2025-01-13 00:32:13 -03:00
parent e5e040a53b
commit ee19e479f4
18 changed files with 1788 additions and 1127 deletions

21
app/Jobs/PruebaJob.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
namespace App\Jobs;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
use Log;
class PruebaJob implements ShouldQueue
{
use Queueable;
public function __construct()
{
}
public function handle(): void
{
Log::info("Prueba de un JOB!");
}
}