mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-01 20:17:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Livewire;
 | |
| 
 | |
| use App\Models\Document;
 | |
| use App\Utils\Traits\WithSorting;
 | |
| use Livewire\Component;
 | |
| use Livewire\WithPagination;
 | |
| 
 | |
| class DownloadsTable extends Component
 | |
| {
 | |
|     use WithPagination, WithSorting;
 | |
| 
 | |
|     public $per_page = 10;
 | |
| 
 | |
|     public $status = [
 | |
|         'resources',
 | |
|     ];
 | |
| 
 | |
|     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()
 | |
|     {
 | |
|         // $query = auth('contact')->user()->client->documents();
 | |
|         $query = Document::query();
 | |
| 
 | |
|         if (in_array('resources', $this->status) && !in_array('client', $this->status)) {
 | |
|             $query = $query->where('documentable_type', '!=', 'App\Models\Client');
 | |
|         }
 | |
| 
 | |
|         if (in_array('client', $this->status) && !in_array('resources', $this->status)) {
 | |
|             $query = $query->where('documentable_type', 'App\Models\Client');
 | |
|         }
 | |
| 
 | |
|         $query = $query
 | |
|             // ->where('is_public', true)
 | |
|             ->orderBy($this->sort_field, $this->sort_asc ? 'asc' : 'desc')
 | |
|             ->paginate($this->per_page);
 | |
| 
 | |
|         return render('components.livewire.downloads-table', [
 | |
|             'downloads' => $query,
 | |
|         ]);
 | |
|     }
 | |
| }
 |