invoiceninja/app/Ninja/Repositories/AccountGatewayRepository.php

32 lines
926 B
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Repositories;
2015-11-06 00:37:04 +02:00
use DB;
class AccountGatewayRepository extends BaseRepository
{
public function getClassName()
{
return 'App\Models\AccountGateway';
}
public function find($accountId)
{
2016-05-14 17:23:20 -04:00
$query = DB::table('account_gateways')
2015-11-06 00:37:04 +02:00
->join('gateways', 'gateways.id', '=', 'account_gateways.gateway_id')
2017-03-16 16:03:17 +02:00
->join('accounts', 'accounts.id', '=', 'account_gateways.account_id')
->where('account_gateways.account_id', '=', $accountId)
->whereNull('account_gateways.deleted_at');
2016-05-14 17:23:20 -04:00
2017-03-14 15:18:31 +02:00
return $query->select(
'account_gateways.id',
'account_gateways.public_id',
'gateways.name',
2017-03-16 22:56:13 +02:00
'gateways.name as gateway',
2017-03-14 15:18:31 +02:00
'account_gateways.deleted_at',
2017-03-16 16:03:17 +02:00
'account_gateways.gateway_id',
'accounts.gateway_fee_enabled');
2015-11-06 00:37:04 +02:00
}
}