mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 01:54:09 -08:00
18 lines
306 B
PHP
18 lines
306 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Import extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $casts = [
|
|
'header_row' => 'array',
|
|
'first_row' => 'array',
|
|
'field_map' => 'json',
|
|
];
|
|
}
|