mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
13 lines
No EOL
168 B
PHP
13 lines
No EOL
168 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Traits\SlugTrait;
|
|
|
|
class Genre extends Model
|
|
{
|
|
protected $table = 'genres';
|
|
|
|
use SlugTrait;
|
|
} |