bank reconciliation
This commit is contained in:
21
app/Filters/Banking/Reconciliations.php
Normal file
21
app/Filters/Banking/Reconciliations.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Filters\Banking;
|
||||
|
||||
use EloquentFilter\ModelFilter;
|
||||
|
||||
class Reconciliations extends ModelFilter
|
||||
{
|
||||
/**
|
||||
* Related Models that have ModelFilters as well as the method on the ModelFilter
|
||||
* As [relatedModel => [input_key1, input_key2]].
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $relations = [];
|
||||
|
||||
public function account($account)
|
||||
{
|
||||
return $this->where('account_id', $account);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user