21 lines
405 B
PHP
21 lines
405 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class HandoverItem extends Model
|
|
{
|
|
protected $fillable = ['handover_id', 'uniform_issue_id', 'quantity', 'condition'];
|
|
|
|
public function handover()
|
|
{
|
|
return $this->belongsTo(Handover::class);
|
|
}
|
|
|
|
public function issue()
|
|
{
|
|
return $this->belongsTo(UniformIssue::class, 'uniform_issue_id');
|
|
}
|
|
}
|