mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Implement CoreUI Interface * Core UI Navigation wire frame * UI - Fix sidebar nav - add Invoice Ninja Logo * Create layout using CoreUI admin template * Login UI, Database seeds
21 lines
335 B
PHP
21 lines
335 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class PaymentLibrary.
|
|
*/
|
|
class PaymentLibrary extends Model
|
|
{
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function gateways()
|
|
{
|
|
return $this->hasMany(Gateway::class, 'payment_library_id');
|
|
}
|
|
}
|