File tree 3 files changed +7
-13
lines changed
3 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 14
14
}
15
15
],
16
16
"require" : {
17
- "php" : " >=7.1.3"
17
+ "php" : " >=7.1.3" ,
18
+ "laravel/framework" : " ^6.0"
18
19
},
19
20
"autoload" : {
20
21
"psr-4" : {
Original file line number Diff line number Diff line change 6
6
7
7
class ErrorsServiceProvider extends ServiceProvider
8
8
{
9
- /**
10
- * Indicates if loading of the provider is deferred.
11
- *
12
- * @var bool
13
- */
14
- protected $ defer = true ;
15
-
16
9
/**
17
10
* Register the service provider.
18
11
*
19
12
* @return void
20
13
*/
21
- public function register ()
14
+ public function boot ()
22
15
{
23
16
$ this ->publishes ([
24
- __DIR__ .'/publish/errors ' => base_path ('views/errors ' ),
25
- __DIR__ .'/publish/svg ' => base_path ( ' public/ svg ' ),
26
- ]);
17
+ __DIR__ .'/publish/errors ' => resource_path ('views/errors ' ),
18
+ __DIR__ .'/publish/svg ' => public_path ( ' svg ' ),
19
+ ], ' laravel-collective-errors ' );
27
20
}
28
21
}
Original file line number Diff line number Diff line change 489
489
490
490
<div class =" relative pb-full md:flex md:pb-0 md:min-h-screen w-full md:w-1/2" >
491
491
<div class =" vh-100 absolute pin bg-laravel" >
492
- <img class =" logo-image" src =" /svg/laravel-brand .svg" alt =" " >
492
+ <img class =" logo-image" src =" /svg/laravel.svg" alt =" laravel brand " >
493
493
</div >
494
494
</div >
495
495
</div >
You can’t perform that action at this time.
0 commit comments