blob: a129dc80efbf78d519db8d02a82c862a9343ec84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
/**
* Created by PhpStorm.
* User: camilstaps
* Date: 13-5-15
* Time: 13:12
*/
namespace CamilStaps\BotleaguesApi;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Mail;
class PasswordReminder extends Model {
protected $table = 'password_reminders';
protected $hidden = ['token'];
protected $fillable = ['userId', 'token', 'valid_till'];
/**
* Override the parent's save() function to automatically update the valid_till timestamp, and send an email
*/
public function save(array $options = array()) {
$this->valid_till = date("Y-m-d H:i:s", time() + 3600);
$user = User::find($this->userId);
Mail::send('packages.camil-staps.botleagues-api.emails.auth.reminder', ['token' => $this->token], function($message) use ($user) {
$message->to($user->email, "User " . $user->id);
});
return parent::save($options);
}
/**
* Disable updated_at timestamp
*/
public function setUpdatedAtAttribute($value) {}
}
|