ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/fms-worksuite/app/Models/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/fms-worksuite/app/Models/LeadSource.php |
<?php namespace App\Models; use App\Traits\HasCompany; use Illuminate\Database\Eloquent\Relations\HasMany; /** * App\Models\LeadSource * * @property int $id * @property string $type * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property int|null $added_by * @property int|null $last_updated_by * @property-read mixed $icon * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Lead[] $leads * @property-read int|null $leads_count * @method static \Illuminate\Database\Eloquent\Builder|LeadSource newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|LeadSource newQuery() * @method static \Illuminate\Database\Eloquent\Builder|LeadSource query() * @method static \Illuminate\Database\Eloquent\Builder|LeadSource whereAddedBy($value) * @method static \Illuminate\Database\Eloquent\Builder|LeadSource whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|LeadSource whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|LeadSource whereLastUpdatedBy($value) * @method static \Illuminate\Database\Eloquent\Builder|LeadSource whereType($value) * @method static \Illuminate\Database\Eloquent\Builder|LeadSource whereUpdatedAt($value) * @property int|null $company_id * @property-read \App\Models\Company|null $company * @method static \Illuminate\Database\Eloquent\Builder|LeadSource whereCompanyId($value) * @mixin \Eloquent */ class LeadSource extends BaseModel { use HasCompany; protected $table = 'lead_sources'; protected $guarded = ['id']; public function leads(): HasMany { return $this->hasMany(Lead::class, 'source_id')->orderBy('column_priority'); } }