2025-06-29 18:33:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
|
|
|
|
|
use App\Models\Log;
|
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
|
|
class ExceptionLogged
|
|
|
|
|
{
|
|
|
|
|
use Dispatchable, SerializesModels;
|
|
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
|
public Log $log
|
2026-03-08 14:17:55 +01:00
|
|
|
) {}
|
2025-06-29 18:33:18 +02:00
|
|
|
}
|