Install Debugbar and enable debug mode

This commit is contained in:
Craig Rood 2022-06-05 12:21:33 +00:00
parent 53182a0e11
commit 45af9dd591
4 changed files with 506 additions and 272 deletions

View File

@ -21,7 +21,8 @@
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.0"
"phpunit/phpunit": "^9.0",
"barryvdh/laravel-debugbar": "^3.6"
},
"config": {
"optimize-autoloader": true,

761
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -7,6 +7,10 @@
<title>Laravel</title>
<link rel="stylesheet" href="{{ url('/css/bootstrap.min.css') }}">
<script src="{{ url('/js/jquery-3.4.1.slim.min.js') }}"></script>
<script src="{{ url('/js/popper.min.js') }}"></script>
<script src="{{ url('/js/bootstrap.min.js') }}"></script>
</head>
<body>
<body>
@ -15,10 +19,12 @@
<p>btc-playground is running successfully!</p>
</div>
<?php
Debugbar::warning('Testing, 123.');
?>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="{{ url('/js/jquery-3.4.1.slim.min.js') }}"></script>
<script src="{{ url('/js/popper.min.js') }}"></script>
<script src="{{ url('/js/bootstrap.min.js') }}"></script>
</body>
</html>

2
storage/debugbar/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore