silent-auction/app/Models/PaymentMethods.php
2018-12-23 09:00:22 -05:00

20 lines
313 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PaymentMethods extends Model
{
protected $table = 'payment_methods';
protected $fillable = [
'pm_name'
];
public function checkout()
{
return $this->belongsTo('App\Models\Checkout', 'payment_method', 'pm_id');
}
}