abschlussprojekt-device-man.../device-app/app/Models/Device.php

27 lines
624 B
PHP
Raw Normal View History

2023-03-23 21:50:31 +01:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Device extends Model
{
use HasFactory;
2023-03-24 13:49:09 +01: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
/**
* 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'];
//Timestamps are disabled.
public $timestamps = false;
2023-03-23 21:50:31 +01:00
}