mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
45 lines
946 B
PHP
45 lines
946 B
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
use App\Models\Client;
|
|
use App\Utils\Traits\WithSorting;
|
|
use Livewire\Component;
|
|
use Livewire\WithPagination;
|
|
|
|
class DocumentsTable extends Component
|
|
{
|
|
use WithPagination, WithSorting;
|
|
|
|
public $client;
|
|
|
|
public $per_page = 10;
|
|
|
|
public function mount($client)
|
|
{
|
|
$this->client = $client;
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
$query = $this->client
|
|
->documents()
|
|
->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc')
|
|
->paginate($this->per_page);
|
|
|
|
return render('components.livewire.documents-table', [
|
|
'documents' => $query,
|
|
]);
|
|
}
|
|
}
|