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