You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
286 B

<?php
namespace App\Models;
class ApprovalItems extends SoftDeletesModel
{
protected $table = "approval_items";
public function belongs() {
return $this->morphTo();
}
public function approval()
{
return $this->belongsTo(Approval::class);
}
}