mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.0 KiB
PHP
83 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
|
|
class Customer extends Authenticatable
|
|
{
|
|
use HasFactory, SoftDeletes,HasApiTokens ;
|
|
|
|
protected $hidden = [
|
|
'password', 'remember_token',
|
|
];
|
|
|
|
protected $casts = [
|
|
'email_verified_at' => 'datetime',
|
|
'dob' => 'date'
|
|
];
|
|
|
|
public function invoices(){
|
|
return $this->hasMany(Invoice::class);
|
|
}
|
|
|
|
public function tickets(){
|
|
return $this->hasMany(Ticket::class);
|
|
}
|
|
|
|
public function main_tickets(){
|
|
return $this->hasMany(Ticket::class)->whereNull('parent_id');
|
|
}
|
|
|
|
public function products(){
|
|
return $this->belongsToMany(Product::class,'customer_product');
|
|
}
|
|
public function credits(){
|
|
return $this->hasMany(Credit::class);
|
|
}
|
|
|
|
public function addresses(){
|
|
return $this->hasMany(Address::class);
|
|
}
|
|
|
|
|
|
public function favorites(){
|
|
return $this->belongsToMany(Product::class,'customer_product');
|
|
}
|
|
|
|
public function comments(){
|
|
return $this->morphMany(Comment::class, 'commentator');
|
|
}
|
|
|
|
|
|
public function evaluations(){
|
|
|
|
return Evaluation::where(function ($query) {
|
|
$query->whereNull('evaluationable_type')
|
|
->whereNull('evaluationable_id');
|
|
})->orWhere(function ($query) {
|
|
$query->where('evaluationable_type', Customer::class)
|
|
->whereNull('evaluationable_id');
|
|
})->orWhere(function ($query ) {
|
|
$query->where('evaluationable_type', Customer::class)
|
|
->where('evaluationable_id',$this->id);
|
|
})->get();
|
|
}
|
|
|
|
|
|
public function avatar(){
|
|
if ($this->avatar == null || trim($this->avatar) == ''){
|
|
return asset('assets/default/unknown.svg');
|
|
}
|
|
|
|
|
|
return \Storage::url('customers/' . $this->avatar);
|
|
}
|
|
|
|
|
|
}
|