mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
15 lines
258 B
PHP
15 lines
258 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class InvoiceStatuses extends Model
|
|
{
|
|
protected $fillable = ['status','comment', 'invoice_id'];
|
|
|
|
public function invoice() {
|
|
return $this->belongsTo(Invoice::class);
|
|
}
|
|
}
|