File manager - Edit - /var/www/html/portalHomolog/app/Models/Siati/StatusCurriculo.php
Back
<?php namespace App\Models\Siati; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; use Illuminate\Support\Str; class StatusCurriculo extends Model { use HasApiTokens, HasFactory, Notifiable; public $incrementing = false; protected $keyType = 'string'; protected $table = 'status_curriculo'; protected $fillable = [ 'id', 'candidate_id', 'observacao', 'status', 'status_date', 'created_at', 'updated_at', ]; public static function boot() { parent::boot(); static::creating(function ($model) { $model->id = Str::uuid(); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings