VANA/VANA-php/app/Models/Endpoint.php

22 lines
377 B
PHP
Raw Normal View History

2024-10-11 08:02:45 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Endpoint extends Model
{
use HasFactory;
protected $table = 'endpoints';
protected $fillable = ['uri', 'settings'];
protected function casts(): array
{
return [
'settings' => 'array',
];
}
}