File manager - Edit - /var/www/html/spdc/api/app/Models/OccurrencyExecution.php
Back
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Concerns\HasUuids; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Factories\HasFactory; class OccurrencyExecution extends Model { use HasFactory; use HasUuids; protected $fillable = [ 'observation', 'files_paths', 'images_paths', 'occurrency_id', 'team', 'responsable_id' ]; protected $casts = [ 'files_paths' => 'array', 'images_paths' => 'array', 'team' => 'array' ]; /** * Get the occurrency that owns the OccurrencyInspection * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function occurrency(): BelongsTo { return $this->belongsTo(Occurrency::class); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings