b9202d2070
modified: SRC/app/Http/routes.php modified: SRC/app/Models/User.php
47 lines
1.2 KiB
PHP
Executable File
47 lines
1.2 KiB
PHP
Executable File
<?php namespace App\Models;
|
|
|
|
use Illuminate\Auth\Authenticatable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Auth\Passwords\CanResetPassword;
|
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
|
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
|
|
use Auth;
|
|
|
|
class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
|
|
use Authenticatable, CanResetPassword;
|
|
|
|
protected $table = 'users';
|
|
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['name', 'email', 'password'];
|
|
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = ['password', 'remember_token'];
|
|
|
|
public function scopeCurrent($query)
|
|
{
|
|
$idUser = Auth::user()->id;
|
|
return $query->where('id', $idUser)->first();
|
|
}
|
|
|
|
public function scopeReferents($query)
|
|
{
|
|
return $query->where('droits', '0');
|
|
}
|
|
|
|
public function scopeName($query, $reg) {
|
|
return $query->where('firstname', 'like', '%'.$reg.'%')->orWhere('lastname', 'like', '%'.$reg.'%');
|
|
}
|
|
}
|