Repository URL to install this package:
|
Version:
3.4.2 ▾
|
<?php
namespace Evsmash\Banners\Schemas;
use Evsmash\Core\Schemas\Base;
class BannersGroups extends Base {
protected $table = 'banners_groups';
// validate
static public function validate() {
return [
'name' => 'req|max:50',
];
}
// create
public function create() {
$this->schemaCreate(function($m) {
$m->increments('id');
$m->string('name', 50);
$m->nullabletimestamps();
$m->softDeletes();
});
}
}