AJustes generales y login
This commit is contained in:
21
app/Jobs/PruebaJob.php
Normal file
21
app/Jobs/PruebaJob.php
Normal 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!");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user