-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathAppServiceProvider.php
59 lines (49 loc) · 1.26 KB
/
AppServiceProvider.php
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace App\Providers;
use Illuminate\Auth\Notifications\ResetPassword;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* The path to the "home" route for your application.
*
* Typically, users are redirected here after authentication.
*
* @var string
*/
public const HOME = '/home';
/**
* Register any application services.
*/
public function register(): void
{
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
$this->bootAuth();
$this->bootRoute();
}
public function bootAuth()
{
ResetPassword::createUrlUsing(function ($user, string $token) {
return env('APP_URL').'/reset-password?token='.$token;
});
}
public function bootRoute()
{
RateLimiter::for('login', function (Request $request) {
return Limit::perMinute(10);
});
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(30);
});
}
}