File tree Expand file tree Collapse file tree 7 files changed +1311
-666
lines changed Expand file tree Collapse file tree 7 files changed +1311
-666
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
4
4
## About Repository
5
5
6
- A very simple Laravel 6/ 7 + Vue 2 + AdminLTE 3 based Curd Starter template for SPA Application.
6
+ A very simple Laravel 7 + Vue 2 + AdminLTE 3 based Curd Starter template for SPA Application.
7
7
<p align =" center " >
8
8
<img src =" https://i.imgur.com/mZAHbUL.png " >
9
9
<img src =" https://i.imgur.com/3hhoQnq.png " >
@@ -13,7 +13,7 @@ A very simple Laravel 6/7 + Vue 2 + AdminLTE 3 based Curd Starter template for S
13
13
14
14
## Tech Specification
15
15
16
- - Laravel 6 + 7 (Branch: [ laravel-7 ] ( https://github.com/AnowarCST/laravel-vue-crud-starter/tree/laravel-7 ) )
16
+ - Laravel 7
17
17
- Vue 2 + VueRouter + vue-progressbar + sweetalert2 + laravel-vue-pagination
18
18
- Laravel Passport
19
19
- Admin LTE 3 + Bootstrap 4 + Font Awesome 5
@@ -55,7 +55,7 @@ A very simple Laravel 6/7 + Vue 2 + AdminLTE 3 based Curd Starter template for S
55
55
- ` php artisan passport:install `
56
56
- Application http://localhost:8008/
57
57
- Adminer for Database http://localhost:8080/
58
- - host : yourIP:3307, user: root, Password: 123456
58
+ - DBhost : yourIP:3307, user: root, Password: 123456
59
59
60
60
61
61
## Unit Test
Original file line number Diff line number Diff line change 2
2
3
3
namespace App \Exceptions ;
4
4
5
- use Exception ;
6
5
use Illuminate \Foundation \Exceptions \Handler as ExceptionHandler ;
6
+ use Throwable ;
7
7
8
8
class Handler extends ExceptionHandler
9
9
{
@@ -29,10 +29,12 @@ class Handler extends ExceptionHandler
29
29
/**
30
30
* Report or log an exception.
31
31
*
32
- * @param \Exception $exception
32
+ * @param \Throwable $exception
33
33
* @return void
34
+ *
35
+ * @throws \Exception
34
36
*/
35
- public function report (Exception $ exception )
37
+ public function report (Throwable $ exception )
36
38
{
37
39
parent ::report ($ exception );
38
40
}
@@ -41,10 +43,12 @@ public function report(Exception $exception)
41
43
* Render an exception into an HTTP response.
42
44
*
43
45
* @param \Illuminate\Http\Request $request
44
- * @param \Exception $exception
45
- * @return \Illuminate\Http\Response
46
+ * @param \Throwable $exception
47
+ * @return \Symfony\Component\HttpFoundation\Response
48
+ *
49
+ * @throws \Throwable
46
50
*/
47
- public function render ($ request , Exception $ exception )
51
+ public function render ($ request , Throwable $ exception )
48
52
{
49
53
return parent ::render ($ request , $ exception );
50
54
}
Original file line number Diff line number Diff line change 8
8
],
9
9
"license" : " MIT" ,
10
10
"require" : {
11
- "php" : " ^7.2" ,
11
+ "php" : " ^7.2.5 " ,
12
12
"fideloper/proxy" : " ^4.0" ,
13
- "laravel/framework" : " ^6.2 " ,
13
+ "laravel/framework" : " ^7.0 " ,
14
14
"laravel/passport" : " ^8.3" ,
15
- "laravel/tinker" : " ^2.0"
15
+ "laravel/tinker" : " ^2.0" ,
16
+ "laravel/ui" : " ^2.0"
16
17
},
17
18
"require-dev" : {
18
- "facade/ignition" : " ^1.4 " ,
19
+ "facade/ignition" : " ^2.0 " ,
19
20
"fzaninotto/faker" : " ^1.4" ,
20
21
"mockery/mockery" : " ^1.0" ,
21
- "nunomaduro/collision" : " ^3.0 " ,
22
- "phpunit/phpunit" : " ^8.0 "
22
+ "nunomaduro/collision" : " ^4.1 " ,
23
+ "phpunit/phpunit" : " ^8.5 "
23
24
},
24
25
"config" : {
25
26
"optimize-autoloader" : true ,
You can’t perform that action at this time.
0 commit comments