2023-03-23 21:50:31 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-03-28 22:17:54 +02:00
|
|
|
use App\Models\OwnerTransaction;
|
|
|
|
use App\Models\LocationTransaction;
|
|
|
|
use App\Models\PurchasingInformation;
|
2023-03-23 21:50:31 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2023-03-28 22:17:54 +02:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2023-03-23 21:50:31 +01:00
|
|
|
|
|
|
|
class Device extends Model
|
|
|
|
{
|
2023-03-27 15:29:49 +02:00
|
|
|
use HasFactory;
|
|
|
|
|
2023-03-24 13:49:09 +01:00
|
|
|
/**
|
2023-03-27 15:29:49 +02:00
|
|
|
* The primary key associated with the devices table.
|
2023-03-24 13:49:09 +01:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $primaryKey = 'device_id';
|
2023-03-26 12:17:43 +02:00
|
|
|
|
2023-03-27 15:29:49 +02:00
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array<int, string>
|
|
|
|
*/
|
2023-03-26 12:17:43 +02:00
|
|
|
protected $fillable = ['device_id', 'title', 'device_type', 'description', 'accessories', 'rz_username_buyer', 'serial_number', 'image_url'];
|
|
|
|
|
2023-03-27 15:29:49 +02:00
|
|
|
//Timestamps are disabled.
|
|
|
|
public $timestamps = false;
|
2023-03-28 22:17:54 +02:00
|
|
|
|
|
|
|
public function owners() {
|
|
|
|
return $this->hasMany(OwnerTransaction::class, 'device_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function locations() {
|
|
|
|
return $this->hasMany(LocationTransaction::class, 'device_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function purchasing() {
|
|
|
|
return $this->belongsTo(PurchasingInformation::class, 'device_id');
|
|
|
|
}
|
2023-03-23 21:50:31 +01:00
|
|
|
}
|