2020-08-14 17:29:26 +02:00
|
|
|
<?php
|
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-28 12:04:34 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-08-14 17:29:26 +02:00
|
|
|
namespace App\Http\Livewire;
|
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
use App\Models\Client;
|
2020-08-14 17:29:26 +02:00
|
|
|
use App\Utils\Traits\WithSorting;
|
|
|
|
use Livewire\Component;
|
|
|
|
use Livewire\WithPagination;
|
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
class DocumentsTable extends Component
|
2020-08-14 17:29:26 +02:00
|
|
|
{
|
|
|
|
use WithPagination, WithSorting;
|
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
public $client;
|
|
|
|
|
2020-08-14 17:29:26 +02:00
|
|
|
public $per_page = 10;
|
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
public function mount($client)
|
|
|
|
{
|
|
|
|
$this->client = $client;
|
|
|
|
}
|
|
|
|
|
2020-08-14 17:29:26 +02:00
|
|
|
public function render()
|
|
|
|
{
|
2021-02-15 15:52:13 +01:00
|
|
|
$query = $this->client
|
|
|
|
->documents()
|
2020-08-14 17:29:26 +02:00
|
|
|
->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc')
|
|
|
|
->paginate($this->per_page);
|
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
return render('components.livewire.documents-table', [
|
|
|
|
'documents' => $query,
|
2020-08-14 17:29:26 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|