mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-02-16 18:14:23 +01:00
11 lines
152 B
PHP
11 lines
152 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Traits\SlugTrait;
|
||
|
|
||
|
class Genre extends Model
|
||
|
{
|
||
|
protected $table = 'genres';
|
||
|
|
||
|
use SlugTrait;
|
||
|
}
|