%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Models/ |
Upload File : |
<?php
namespace App\Models;
use App\Traits\HasCompany;
/**
* App\Models\Lead
*
* @property int $id
* @property int|null $client_id
* @property int|null $source_id
* @property int|null $status_id
* @property int $column_priority
* @property int|null $agent_id
* @property string|null $company_name
* @property string|null $website
* @property string|null $address
* @property string|null $salutation
* @property string $client_name
* @property string $client_email
* @property string|null $mobile
* @property string|null $cell
* @property string|null $office
* @property string|null $city
* @property string|null $state
* @property string|null $country
* @property string|null $postal_code
* @property string|null $note
* @property string $next_follow_up
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property float|null $value
* @property float|null $total_value
* @property int|null $currency_id
* @property int|null $category_id
* @property int|null $added_by
* @property int|null $last_updated_by
* @property-read \App\Models\User|null $client
* @property-read \App\Models\Currency|null $currency
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\LeadFiles[] $files
* @property-read int|null $files_count
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\LeadFollowUp[] $follow
* @property-read int|null $follow_count
* @property-read \App\Models\LeadFollowUp|null $followup
* @property-read mixed $extras
* @property-read mixed $icon
* @property-read mixed $image_url
* @property-read \App\Models\LeadAgent|null $leadAgent
* @property-read \App\Models\LeadSource|null $leadSource
* @property-read \App\Models\LeadStatus|null $leadStatus
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read int|null $notifications_count
* @method static \Database\Factories\LeadFactory factory(...$parameters)
* @method static \Illuminate\Database\Eloquent\Builder|Lead newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Lead newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Lead query()
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereAddedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereAddress($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereAgentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCategoryId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCell($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCity($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereClientEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereClientId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereClientName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereColumnPriority($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCompanyName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCountry($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCurrencyId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereLastUpdatedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereMobile($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereNextFollowUp($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereNote($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereOffice($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead wherePostalCode($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereSalutation($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereSourceId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereState($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereStatusId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereValue($value)
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereWebsite($value)
* @property string|null $hash
* @property-read \App\Models\LeadCategory|null $category
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereHash($value)
* @property int|null $company_id
* @property-read \App\Models\Company|null $company
* @method static \Illuminate\Database\Eloquent\Builder|Lead whereCompanyId($value)
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Product> $products
* @property-read int|null $products_count
* @property-read int|null $follow_up_date_next
* @property-read int|null $follow_up_date_past
* @mixin \Eloquent
*/
class LeadAd extends BaseModel
{
use HasCompany;
protected $table = 'lead';
protected $appends = ['image_url'];
public function getImageUrlAttribute()
{
$gravatarHash = md5(strtolower(trim($this->email)));
return 'https://www.gravatar.com/avatar/' . $gravatarHash . '.png?s=200&d=mp';
}
}