%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/workeasy-api/app/Models/
Upload File :
Create Path :
Current File : /var/www/html/workeasy-api/app/Models/Company.php

<?php

namespace Workeasy\Models;


class Company extends BaseModel
{
    protected $fillable = [
        'name',
        'industry',
        'vat',
        'address',
        'phone_number',
    ];
    protected $guarded  = ['user_id'];

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

    public function offers()
    {
        return $this->hasMany(Offer::class);
    }

}

Zerion Mini Shell 1.0