Files
aso/stubs/nwidart-stubs/model.stub
Server D3 Linksehat 1bf608b1ed Server 103 Commit
2024-07-18 16:05:33 +07:00

19 lines
363 B
Plaintext
Executable File

<?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();
}
}