14 lines
206 B
Plaintext
14 lines
206 B
Plaintext
<?php
|
|
|
|
namespace $NAMESPACE$;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class $CLASS$ extends Model
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = $FILLABLE$;
|
|
}
|