Separated laravel app to its own folder (#540)
This commit is contained in:
42
api/app/Models/Integration/FormIntegrationsEvent.php
Normal file
42
api/app/Models/Integration/FormIntegrationsEvent.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?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 function casts()
|
||||
{
|
||||
return [
|
||||
'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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user