The laravel boilerplate is project that uses the Laravel
(Version 11) as a backend framework. It provides basic structure for starting any new laravel project. It has implemented the basic authetication provided by laravel.
-
Laravel Telescope - For Monitoring request
-
Laravel Littlegatekeeper - Protect pages from access with a universal username/password combination. It is used for developer panel which includes
Telescope
. -
Log Viewer - To manage and keep track of each one of your log files
-
Laravel Sanctum - It provides a featherweight authentication system for SPAs , mobile applications, and simple, token based APIs
-
Laravel Pint - It provides an opinionated PHP code style fixer for minimalists. Pint is built on top of PHP-CS-Fixer and makes it simple to ensure that your code style stays clean and consistent.
-
General Usage to use the pint binary all you have to do is run the following command in the root of your project.
./vendor/bin/pint
-
VS Code - Add Keyboard Shortcut to run Laravel Pint
- Open VS Code.
2. Open Keyboard shortcut panel, either from
file -> preferences -> keyboard Shortcuts
orCtrl+k Ctrl+s
3. Ones open click on the file icon on the top to open the json file of the keyboard shortcuts. 4. Ones open add the following lines to the file.[ { "key": "ctrl+s", "command": "workbench.action.tasks.runTask", "args": "Pint Formatter" } ]
Now when you hit Ctrl + s and your laravel project will be formatted with laravel pint.
-
-
Larastan - Adds static typing to Laravel to improve developer productivity and code quality , Discovers bugs in your code.
-
Note: In any case, if you are unable to commit the code to Git, then run the command below.
chmod ug+x .hooks/pre-commit
-
- Register
- Login
- Get Profile
- Forget and Reset Password
Telescope
,Log Viewer
and other developer packages are accessible with universal username and password defined in .env file underDEVELOPER_USERNAME
andDEVELOPER_PASSWORD
.