This commit is contained in:
Malibu 2015-02-18 18:13:47 +01:00
parent 2781c482c1
commit fed82155dc
3 changed files with 23 additions and 3 deletions

View File

@ -1,13 +1,33 @@
<?php namespace App;
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 {
class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
use Authenticatable, CanResetPassword;
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)
{

Binary file not shown.

Before

Width:  |  Height:  |  Size: 394 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -24,7 +24,7 @@
</div>
@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() }}">
<div class="form-group">