1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Livewire/PaymentMethodsTable.php
2020-06-10 23:35:39 +10:00

36 lines
795 B
PHP

<?php
namespace App\Http\Livewire;
use App\Models\ClientGatewayToken;
use App\Utils\Traits\WithSorting;
use Livewire\Component;
use Livewire\WithPagination;
class PaymentMethodsTable extends Component
{
use WithPagination;
use WithSorting;
public $per_page = 10;
public $client;
public function mount($client)
{
$this->client = $client;
}
public function render()
{
$query = ClientGatewayToken::query()
->with('gateway_type')
->where('client_id', $this->client->id)
->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc')
->paginate($this->per_page);
return render('components.livewire.payment-methods-table', [
'payment_methods' => $query,
]);
}
}