clara_old/stubs/nwidart-stubs/model.stub
Daeng Deni Mardaeni 6210e33a3b Initial commit
2023-07-03 14:58:31 +07:00

19 lines
363 B
Plaintext

<?php
namespace $NAMESPACE$;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class $CLASS$ extends Model
{
use HasFactory;
protected $fillable = $FILLABLE$;
protected static function newFactory()
{
return \$MODULE_NAMESPACE$\$MODULE$\Database\factories\$NAME$Factory::new();
}
}