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