mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	Added & implemented notes to servers, shared, reseller, domains, DNS and IPs /notes is a CRUD resource
		
			
				
	
	
		
			66 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			1.9 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\Session;
 | 
						|
 | 
						|
class Note extends Model
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
 | 
						|
    public $incrementing = false;
 | 
						|
 | 
						|
    protected $table = 'notes';
 | 
						|
 | 
						|
    protected $keyType = 'string';
 | 
						|
 | 
						|
    protected $fillable = ['id', 'service_id', 'note'];
 | 
						|
 | 
						|
    public static function note(string $service_id): Note
 | 
						|
    {
 | 
						|
        return Cache::remember("note.$service_id", now()->addMonth(1), function () use ($service_id) {
 | 
						|
            return self::where('service_id', $service_id)->with(['server', 'shared', 'reseller', 'domain', 'dns', 'ip'])->first();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public static function allNotes()
 | 
						|
    {
 | 
						|
        return Cache::remember("all_notes", now()->addMonth(1), function () {
 | 
						|
            return self::with(['server', 'shared', 'reseller', 'domain', 'dns', 'ip'])->orderBy('created_at', 'desc')->get();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public function server(): \Illuminate\Database\Eloquent\Relations\BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Server::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function shared(): \Illuminate\Database\Eloquent\Relations\BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Shared::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function reseller(): \Illuminate\Database\Eloquent\Relations\BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Reseller::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function domain(): \Illuminate\Database\Eloquent\Relations\BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Domains::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function dns(): \Illuminate\Database\Eloquent\Relations\BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(DNS::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function ip(): \Illuminate\Database\Eloquent\Relations\BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(IPs::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
}
 |