| Current Path : /home/webg5288/www/laravel_kendal/app/Models/ |
| Current File : /home/webg5288/www/laravel_kendal/app/Models/ImportRun.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ImportRun extends Model
{
protected $fillable = [
'type',
'file_path',
'total_rows',
'processed_rows',
'status',
'missing_items',
'message',
];
protected $casts = [
'missing_items' => 'array',
];
}