1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Http/Livewire/QuotesTable.php
Benjamin Beganović ab8b05dd56
Client portal improvements (#3652)
* Install livewire/livewire

* Table improvements

- Cleanup of InvoiceController
- Added Livewire package
- New Livewire component (InvoicesTable)
- New WithSorting trait
- Removed rendering invoices from index.blade.php
- Removed Yaryabox/Datatables references in InvoiceController

* Refactor: Recurring invoices

* payments table & sorting improvements

* payment methods table

* quotes table

* credits table

* Add turbolinks
2020-04-23 08:49:23 +10:00

46 lines
1.0 KiB
PHP

<?php
namespace App\Http\Livewire;
use App\Models\Quote;
use App\Traits\WithSorting;
use Livewire\Component;
use Livewire\WithPagination;
class QuotesTable extends Component
{
use WithSorting;
use WithPagination;
public $per_page = 10;
public $status = [];
public function statusChange($status)
{
if (in_array($status, $this->status)) {
return $this->status = array_diff($this->status, [$status]);
}
array_push($this->status, $status);
}
public function render()
{
// So $status_id will come in three way:
// draft, sent, approved & expired. Need to transform them to real values.
$query = Quote::query()
->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc');
if (count($this->status)) {
$query = $query->whereIn('status_id', $this->status);
}
$query = $query->paginate($this->per_page);
return render('components.livewire.quotes-table', [
'quotes' => $query
]);
}
}