snipe-it/app/Models/ConsumableAssignment.php
snipe 1582d81e5b Change user_id to created_by
Signed-off-by: snipe <snipe@snipe.net>
2024-09-17 22:16:41 +01:00

34 lines
681 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Watson\Validating\ValidatingTrait;
class ConsumableAssignment extends Model
{
use CompanyableTrait;
use ValidatingTrait;
protected $table = 'consumables_users';
public $rules = [
'assigned_to' => 'required|exists:users,id',
];
public function consumable()
{
return $this->belongsTo(\App\Models\Consumable::class);
}
public function user()
{
return $this->belongsTo(\App\Models\User::class, 'assigned_to');
}
public function adminuser()
{
return $this->belongsTo(\App\Models\User::class, 'created_by');
}
}