HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux Bradford-Sitios 6.14.0-1017-azure #17~24.04.1-Ubuntu SMP Mon Dec 1 20:10:50 UTC 2025 x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/gestion-formularios.bdfschool/app/Models/DamageRecords.php
<?php

namespace App\Models;


use Illuminate\Database\Eloquent\Model;


class DamageRecords extends Model
{
    protected $table = 'damage_records';
    protected $primaryKey = 'id';
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'record_date',
        'area_id',
        'user_charge_id',
        'department',
        'reported_person',
        'is_student',
        'course_id',
        'incident_sector',
        'specific_place',
        'dependency',
        'fixed_asset',
        'status_damage_record_id',
        'damage_description',
        'image_evidence',
        'quotation_files',
        'damage_amount',
        'action_type',
        'required_collection',
        'required_authorization',
        'number_inventory_id',
        'user_created',
        'created_at',
        'user_updated',
        'updated_at',
        'user_cancelled',
        'cancelled_at',
        'reason_cancellation',
        'user_finished',
        'finished_at',
        'email_head',
        'public_hash'

    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */

    public function status_damage_record()
    {
        return $this->belongsTo('App\Models\StatusDamageRecord', 'status_damage_record_id');
    }

    public function area()
    {
        return $this->belongsTo('App\Models\Areas', 'area_id');
    }

    public function course_data()
    {
        return $this->belongsTo('App\Models\Courses', 'course_id');
    }
    
    // public function details()
    // {
    //     return $this->hasMany('App\Models\RequestsDetail', 'request_id', 'id');
    // }


    // Relaciones con el modelo Users
    public function createdBy()
    {
        return $this->belongsTo('App\Models\Users', 'user_created');
    }

    public function updatedBy()
    {
        return $this->belongsTo('App\Models\Users', 'user_updated');
    }

    public function cancelledBy()
    {
        return $this->belongsTo('App\Models\Users', 'user_cancelled');
    }

    public function finishedBy()
    {
        return $this->belongsTo('App\Models\Users', 'user_finished');
    }
}