mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 16:54:45 +02:00
18 lines
238 B
PHP
18 lines
238 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Service extends Model
|
|
{
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'services';
|
|
|
|
}
|