27 lines
452 B
PHP
27 lines
452 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class Card extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'cards';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'description_upright',
|
|
'description_reversed',
|
|
'symbolism',
|
|
'image_url',
|
|
'description'
|
|
];
|
|
|
|
protected $casts = [
|
|
'symbolism' => 'array',
|
|
];
|
|
}
|