24 lines
448 B
Plaintext
Raw Permalink Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace $NAMESPACE$;
2020-02-07 16:58:10 +03:00
use App\Abstracts\Model;
2020-10-17 14:53:24 +03:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
2017-09-14 22:21:00 +03:00
class $CLASS$ extends Model
{
2020-10-17 14:53:24 +03:00
use HasFactory;
2017-09-14 22:21:00 +03:00
protected $fillable = $FILLABLE$;
2020-10-17 14:53:24 +03:00
/**
* Create a new factory instance for the model.
*
* @return \Illuminate\Database\Eloquent\Factories\Factory
*/
protected static function newFactory()
{
return \$FACTORY_NAMESPACE$\$NAME$::new();
}
2017-09-14 22:21:00 +03:00
}