2020-10-17 14:53:24 +03:00

24 lines
448 B
Plaintext

<?php
namespace $NAMESPACE$;
use App\Abstracts\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class $CLASS$ extends Model
{
use HasFactory;
protected $fillable = $FILLABLE$;
/**
* Create a new factory instance for the model.
*
* @return \Illuminate\Database\Eloquent\Factories\Factory
*/
protected static function newFactory()
{
return \$FACTORY_NAMESPACE$\$NAME$::new();
}
}