mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2025-01-16 07:17:54 +03:00
22 lines
311 B
PHP
22 lines
311 B
PHP
<?php namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Project extends Model {
|
|
|
|
protected $fillable = ["name", "descr"];
|
|
|
|
protected $dates = [];
|
|
|
|
public static $rules = [
|
|
"name" => "required",
|
|
];
|
|
|
|
public function tags()
|
|
{
|
|
return $this->belongsToMany("App\Tag")->withTimestamps();
|
|
}
|
|
|
|
|
|
}
|