0491f84ed4
Huge update for Server to use relationships (no more joins) Created LabelsAssigned class for the labels relationship Removed pricingForService() function Removed now unused server cache forgets
24 lines
420 B
PHP
24 lines
420 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LabelsAssigned extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $incrementing = false;
|
|
|
|
public $table = 'labels_assigned';
|
|
|
|
protected $fillable = ['label_id', 'service_id'];
|
|
|
|
public function label()
|
|
{
|
|
return $this->hasOne(Labels::class, 'id', 'label_id');
|
|
}
|
|
|
|
}
|