11 lines
No EOL
158 B
PHP
Executable file
11 lines
No EOL
158 B
PHP
Executable file
<?php
|
|
|
|
class AccountGateway extends Eloquent
|
|
{
|
|
protected $hidden = array('config');
|
|
|
|
public function gateway()
|
|
{
|
|
return $this->belongsTo('Gateway');
|
|
}
|
|
} |