11 lines
160 B
PHP
11 lines
160 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class PaymentLibrary extends Eloquent
|
||
|
|
{
|
||
|
|
protected $table = 'payment_libraries';
|
||
|
|
|
||
|
|
public function gateways()
|
||
|
|
{
|
||
|
|
return $this->hasMany('Gateway');
|
||
|
|
}
|
||
|
|
}
|