18 lines
281 B
PHP
Executable File
18 lines
281 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Transaction extends Model
|
|
{
|
|
//
|
|
protected $guarded = [
|
|
'id'
|
|
];
|
|
public function merchant()
|
|
{
|
|
return $this->belongsTo('App\Models\Merchant', 'merchant_id', 'id');
|
|
}
|
|
}
|