mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
35 lines
692 B
PHP
35 lines
692 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Livewire;
|
||
|
|
||
|
use App\Models\Payment;
|
||
|
use App\Traits\WithSorting;
|
||
|
use Livewire\Component;
|
||
|
use Livewire\WithPagination;
|
||
|
|
||
|
class PaymentsTable extends Component
|
||
|
{
|
||
|
use WithSorting;
|
||
|
use WithPagination;
|
||
|
|
||
|
public $per_page = 10;
|
||
|
public $user;
|
||
|
|
||
|
public function mount()
|
||
|
{
|
||
|
$this->user = auth()->user();
|
||
|
}
|
||
|
|
||
|
public function render()
|
||
|
{
|
||
|
$query = Payment::query()
|
||
|
->with('type', 'client')
|
||
|
->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc')
|
||
|
->paginate($this->per_page);
|
||
|
|
||
|
return render('components.livewire.payments-table', [
|
||
|
'payments' => $query
|
||
|
]);
|
||
|
}
|
||
|
}
|