Your IP : 216.73.216.91


Current Path : /var/www/html/LLCF-APP/app/Models/
Upload File :
Current File : /var/www/html/LLCF-APP/app/Models/Company.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;

class Company extends Model
{
    protected $table = 'company';
    protected $primaryKey = 'idCompany';

    public $timestamps = false;

    protected $fillable = [
        'companyName',
        'companyAddress',
        'companyPhone',
        'timeStamp',
        'idUser',
        'isActive',
        'idBillTitle',
        'unitPrice',
        'idCurrency',
        'tSign',
        'rSign',
        'vat',
        'smCharges',
    ];

    public function user(): BelongsTo
    {
        return $this->belongsTo(User::class, 'idUser');
    }

}