1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Vendor.php
David Bomba f519fc765b
Improvements for eager loading (#3290)
* Working on invoice designs

* Working on Invoice Designs

* Improve eager loads

* Improvements for eager loading
2020-02-06 23:00:22 +11:00

81 lines
1.7 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use App\Models\Filterable;
use App\Models\VendorContact;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Vendor extends BaseModel
{
use SoftDeletes;
use Filterable;
protected $fillable = [
'name',
'id_number',
'vat_number',
'work_phone',
'address1',
'address2',
'city',
'state',
'postal_code',
'country_id',
'private_notes',
'currency_id',
'website',
'transaction_name',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
];
protected $casts = [
'country_id' => 'string',
'currency_id' => 'string',
'is_deleted' => 'boolean',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
protected $with = [
// 'contacts',
];
public function documents()
{
return $this->morphMany(Document::class, 'documentable');
}
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id');
}
public function contacts()
{
return $this->hasMany(VendorContact::class)->orderBy('is_primary', 'desc');
}
public function activities()
{
return $this->hasMany(Activity::class);
}
}