सीधे मुख्य सामग्री पर जाएं

Debug application with Laravel Debugbar

Laravel Debugbar

यह पैकेज PHP Debug Bar  को Laravel के आउटपुट के साथ attach कर देता है |








Installation:

Require this package with composer. It is recommended to require the pacakage for development. 

 composer require barryvdh/laravel-debugbar --dev


Deugbar तभी enable होता है जब .env फाइल में APP_DEBUG=TRUE  होता है |

टिप्पणियाँ

इस ब्लॉग से लोकप्रिय पोस्ट

How to create resourcefull controller in laravel

Laravel helps make   the process easy using resource controllers.  Use the following artisan command to create resourcefull controller :  php artisan make:controller ResourceController --resource  Output: To create normal controller , use the following artisan command  php artisan make:controller TestController