Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/app/Models
الملفات الموجودة في هذا الـ Path:
.
..
Accelerator.php
AcceleratorCategory.php
Activity.php
BillingRequest.php
Campaign.php
CampaignTemplate.php
Contact.php
ContactGroup.php
Customer.php
CustomerMail.php
CustomerPlan.php
CustomerSettings.php
Domain.php
Draft.php
EmailAccount.php
EmailAddress.php
EmailQueue.php
EmailTemplate.php
Faq.php
Form.php
FormData.php
FormDetail.php
FrontContact.php
Group.php
Label.php
Lead.php
Message.php
MessageLog.php
Page.php
Plan.php
Sender.php
SendingServer.php
Settings.php
Tax.php
Template.php
Ticket.php
TicketDescription.php
Unsubscribe.php
User.php
VerifyCustomer.php

مشاهدة ملف: EmailAddress.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class EmailAddress extends Model
{
    protected $fillable = [
        'email','from','status',
    ];

    public function admin(){
        return $this->belongsTo(User::class,'admin_id')->withDefault();
    }
    public function customer_emails(){
        return $this->hasMany(CustomerMail::class);
    }

    public function getStatusAttribute($value)
    {
        return ucfirst($value);
    }
}