Init
This commit is contained in:
23
app/Models/EnrichmentResult.php
Normal file
23
app/Models/EnrichmentResult.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class EnrichmentResult extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'record_type',
|
||||
'record_id',
|
||||
'geocode_result',
|
||||
'email_valid',
|
||||
'credit_score',
|
||||
'enriched_at',
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'geocode_result' => 'array',
|
||||
'email_valid' => 'boolean',
|
||||
'enriched_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user