18 lines
215 B
PHP
18 lines
215 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class Platform extends Model
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var string[]
|
||
|
|
*/
|
||
|
|
protected $fillable = [
|
||
|
|
'name', 'slug', 'short_name'
|
||
|
|
];
|
||
|
|
|
||
|
|
}
|