mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	Updated order/sort by on index pages As using the relationship for price related sorts does not work this method does
		
			
				
	
	
		
			59 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Factories\HasFactory;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Support\Facades\Cache;
 | 
						|
use Illuminate\Support\Facades\DB;
 | 
						|
use Illuminate\Support\Facades\Session;
 | 
						|
 | 
						|
class Domains extends Model
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
 | 
						|
    public $incrementing = false;
 | 
						|
 | 
						|
    protected $table = 'domains';
 | 
						|
 | 
						|
    protected $keyType = 'string';
 | 
						|
 | 
						|
    protected $fillable = ['id', 'domain', 'extension', 'ns1', 'ns2', 'ns3', 'price', 'currency', 'payment_term', 'owned_since', 'provider_id', 'next_due_date'];
 | 
						|
 | 
						|
 | 
						|
    public static function allDomains()
 | 
						|
    {//All domains and relationships (no using joins)
 | 
						|
        return Cache::remember("all_domains", now()->addMonth(1), function () {
 | 
						|
            $query = Domains::with(['provider', 'price', 'labels']);
 | 
						|
            if (in_array(Session::get('sort_on'), [3, 4, 5, 6], true)) {
 | 
						|
                $options = Settings::orderByProcess(Session::get('sort_on'));
 | 
						|
                $query->orderBy(Pricing::select("pricings.$options[0]")->whereColumn("pricings.service_id", "domains.id"), $options[1]);
 | 
						|
            }
 | 
						|
            return $query->get();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public static function domain(string $domain_id)
 | 
						|
    {//Single domains and relationships (no using joins)
 | 
						|
        return Cache::remember("domain.$domain_id", now()->addMonth(1), function () use ($domain_id) {
 | 
						|
            return Domains::where('id', $domain_id)
 | 
						|
                ->with(['provider', 'price', 'labels'])->first();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public function provider()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Providers::class, 'id', 'provider_id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function price()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Pricing::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function labels()
 | 
						|
    {
 | 
						|
        return $this->hasMany(LabelsAssigned::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
}
 |