mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-25 14:37:59 +01:00
12 lines
209 B
PHP
12 lines
209 B
PHP
<?php
|
|
|
|
namespace Entities;
|
|
use Traits\SlugTrait;
|
|
|
|
class Genre extends \Eloquent {
|
|
protected $table = 'genres';
|
|
protected $fillable = ['name', 'slug'];
|
|
public $timestamps = false;
|
|
|
|
use SlugTrait;
|
|
}
|