inital commit

This commit is contained in:
2024-02-01 09:53:53 +00:00
commit 9743fce12b
19771 changed files with 4230637 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class RmsEventHistory extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'user_id',
'status',
'path_file'
];
public function user()
{
return $this->belongsTo('App\Models\User');
}
public function rmsEvent()
{
return $this->belongsTo('App\Models\RmsEvent');
}
}