2019-03-05 18:10:11 -03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
2019-03-18 08:53:00 -03:00
|
|
|
use Illuminate\Auth\Authenticatable;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Illuminate\Foundation\Auth\Access\Authorizable;
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
|
|
|
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
|
2019-03-05 18:10:11 -03:00
|
|
|
|
2019-03-18 08:53:00 -03:00
|
|
|
class User extends Model implements AuthenticatableContract, AuthorizableContract
|
2019-03-05 18:10:11 -03:00
|
|
|
{
|
2019-03-18 08:53:00 -03:00
|
|
|
use SoftDeletes, Authenticatable, Authorizable;
|
|
|
|
|
|
|
|
public function account()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Account::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getNameAttribute()
|
|
|
|
{
|
|
|
|
return $this->first_name.' '.$this->last_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPasswordAttribute($password)
|
|
|
|
{
|
|
|
|
$this->attributes['password'] = Hash::make($password);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function scopeOrderByName($query)
|
|
|
|
{
|
|
|
|
$query->orderBy('last_name')->orderBy('first_name');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function scopeWhereRole($query, $role)
|
|
|
|
{
|
|
|
|
switch ($role) {
|
|
|
|
case 'user': return $query->where('owner', false);
|
|
|
|
case 'owner': return $query->where('owner', true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function scopeFilter($query, array $filters)
|
|
|
|
{
|
|
|
|
$query->when($filters['search'] ?? null, function ($query, $search) {
|
|
|
|
$query->where(function ($query) use ($search) {
|
2019-04-02 14:05:17 -03:00
|
|
|
$query->where('first_name', 'like', '%'.$search.'%')
|
|
|
|
->orWhere('last_name', 'like', '%'.$search.'%')
|
|
|
|
->orWhere('email', 'like', '%'.$search.'%');
|
2019-03-18 08:53:00 -03:00
|
|
|
});
|
|
|
|
})->when($filters['role'] ?? null, function ($query, $role) {
|
|
|
|
$query->whereRole($role);
|
|
|
|
})->when($filters['trashed'] ?? null, function ($query, $trashed) {
|
|
|
|
if ($trashed === 'with') {
|
|
|
|
$query->withTrashed();
|
|
|
|
} elseif ($trashed === 'only') {
|
|
|
|
$query->onlyTrashed();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-03-05 18:10:11 -03:00
|
|
|
}
|