%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;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
/**
* App\Models\Proposal
*
* @property int $id
* @property int $lead_id
* @property \Illuminate\Support\Carbon $valid_till
* @property int|null $unit_id
* @property float $sub_total
* @property float $total
* @property int|null $currency_id
* @property string $discount_type
* @property float $discount
* @property int $invoice_convert
* @property string $status
* @property string $ip_address
* @property string|null $note
* @property \Illuminate\Support\Carbon|null $last_viewed
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string|null $client_comment
* @property int $signature_approval
* @property int|null $added_by
* @property int|null $last_updated_by
* @property-read \App\Models\Currency|null $currency
* @property-read mixed $icon
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ProposalItem[] $items
* @property-read int|null $items_count
* @property-read \App\Models\Lead $lead
* @property-read \App\Models\ProposalSign|null $signature
* @method static \Illuminate\Database\Eloquent\Builder|Proposal newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Proposal newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Proposal query()
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereAddedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereClientComment($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereCurrencyId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereDiscount($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereDiscountType($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereInvoiceConvert($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereLastUpdatedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereLeadId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereNote($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereSignatureApproval($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereSubTotal($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereTotal($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereValidTill($value)
* @property string|null $hash
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereHash($value)
* @property string|null $description
* @property string $calculate_tax
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereCalculateTax($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereDescription($value)
* @property int|null $company_id
* @property-read \App\Models\Company|null $company
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereCompanyId($value)
* @property-read \App\Models\UnitType|null $unit
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereIpAddress($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereLastViewed($value)
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereUnitId($value)
* @property int $send_status
* @method static \Illuminate\Database\Eloquent\Builder|Proposal whereSendStatus($value)
* @mixin \Eloquent
*/
class Proposal extends BaseModel
{
use HasCompany;
protected $table = 'proposals';
protected $casts = [
'valid_till' => 'datetime',
'last_viewed' => 'datetime',
];
public function items(): HasMany
{
return $this->hasMany(ProposalItem::class);
}
public function currency(): BelongsTo
{
return $this->belongsTo(Currency::class, 'currency_id');
}
public function lead(): BelongsTo
{
return $this->belongsTo(Lead::class);
}
public function unit(): BelongsTo
{
return $this->belongsTo(UnitType::class, 'unit_id');
}
public function signature(): HasOne
{
return $this->hasOne(ProposalSign::class);
}
}