Merge branch 'master' of https://github.com/matthieupenchenat81/ModuleWeb
This commit is contained in:
commit
ea520351af
@ -1,13 +1,33 @@
|
|||||||
<?php namespace App;
|
<?php namespace App;
|
||||||
|
|
||||||
|
use Illuminate\Auth\Authenticatable;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
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;
|
use Auth;
|
||||||
|
|
||||||
class User extends Model {
|
class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
|
||||||
|
use Authenticatable, CanResetPassword;
|
||||||
|
|
||||||
protected $table = 'users';
|
protected $table = 'users';
|
||||||
|
|
||||||
public $timestamps = false;
|
//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)
|
public function scopeCurrent($query)
|
||||||
{
|
{
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<form class="form-horizontal" role="form" method="POST" action="/oublie">
|
<form class="form-horizontal" role="form" method="POST" action="/forgotten">
|
||||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
<div class="item">
|
<div class="item">
|
||||||
@endif
|
@endif
|
||||||
<br>
|
<br>
|
||||||
<a href="/referents/vive.linux/games"><img style="border: 7px solid white; box-shadow: 0px 0px 3px black;" src="{{$ref -> image}}" width="250px" alt="{{ $ref -> name }}-Nom"></a>
|
<a href="/referents/vive.linux/games"><img style="border: 7px solid white; box-shadow: 0px 0px 3px black; max-height: 500px;" src="{{$ref -> image}}" width="250px" alt="{{ $ref -> name }}-Nom"></a>
|
||||||
<div class="well well-lg">{{$ref -> firstname}}, {{$ref -> lastname}}</div>
|
<div class="well well-lg">{{$ref -> firstname}}, {{$ref -> lastname}}</div>
|
||||||
</div>
|
</div>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Reference in New Issue
Block a user