16 lines
291 B
PHP
16 lines
291 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Payment extends Model
|
|
{
|
|
protected $fillable = ['rental_id', 'amount', 'method', 'status', 'transaction_id', 'notes'];
|
|
|
|
public function rental()
|
|
{
|
|
return $this->belongsTo(Rental::class);
|
|
}
|
|
}
|