40 lines
799 B
PHP
40 lines
799 B
PHP
<?php
|
|
|
|
namespace App\Models\Integration;
|
|
|
|
use App\Events\Models\FormIntegrationsEventCreated;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class FormIntegrationsEvent extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public const STATUS_SUCCESS = 'success';
|
|
public const STATUS_ERROR = 'error';
|
|
|
|
protected $fillable = [
|
|
'integration_id',
|
|
'status',
|
|
'data'
|
|
];
|
|
|
|
protected $casts = [
|
|
'data' => 'object'
|
|
];
|
|
|
|
/**
|
|
* The event map for the model.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dispatchesEvents = [
|
|
'created' => FormIntegrationsEventCreated::class,
|
|
];
|
|
|
|
public function integration()
|
|
{
|
|
return $this->belongsTo(FormIntegration::class, 'integration_id');
|
|
}
|
|
}
|