mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:47:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			681 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			681 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Utils\Traits;
 | 
						|
 | 
						|
trait WithSorting
 | 
						|
{
 | 
						|
    public $sort_field = 'id'; // Default sortBy. Feel free to change or pull from client/company settings.
 | 
						|
 | 
						|
    public $sort_asc = true;
 | 
						|
 | 
						|
    public function sortBy($field)
 | 
						|
    {
 | 
						|
        $this->sort_field === $field
 | 
						|
            ? $this->sort_asc = ! $this->sort_asc
 | 
						|
            : $this->sort_asc = true;
 | 
						|
 | 
						|
        $this->sort_field = $field;
 | 
						|
    }
 | 
						|
}
 |