21 lines
374 B
PHP
21 lines
374 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Sparepart extends Model
|
|
{
|
|
// Sparepart Model
|
|
protected $table = 'spareparts';
|
|
protected $primaryKey = 'id';
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
];
|
|
public function manufacturer()
|
|
{
|
|
return $this->belongsTo(Manufacturer::class);
|
|
}
|
|
}
|