You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Service Provider & Facade (Optional on Laravel 5.5+)
97
105
98
-
Register provider and facade on your `config/app.php` file.
106
+
Register the provider and facade on your `config/app.php` file.
99
107
```php
100
108
'providers' => [
101
109
...,
@@ -120,11 +128,12 @@ And that's it! Start building out some awesome DataTables!
120
128
121
129
To enable debugging mode, just set `APP_DEBUG=true` and the package will include the queries and inputs used when processing the table.
122
130
123
-
**IMPORTANT:** Please make sure that APP_DEBUG is set to false when your app is on production.
131
+
> [!IMPORTANT]
132
+
> Please ensure that the `APP_DEBUG` config is set to false when your app is in production.
124
133
125
134
## PHP ARTISAN SERVE BUG
126
135
127
-
Please avoid using `php artisan serve` when developing with the package.
136
+
Please avoid using `php artisan serve` when developing the package.
128
137
There are known bugs when using this where Laravel randomly returns a redirect and 401 (Unauthorized) if the route requires authentication and a 404 NotFoundHttpException on valid routes.
129
138
130
139
It is advised to use [Homestead](https://laravel.com/docs/5.4/homestead) or [Valet](https://laravel.com/docs/5.4/valet) when working with the package.
@@ -135,7 +144,7 @@ Please see [CONTRIBUTING](https://github.com/yajra/laravel-datatables/blob/maste
135
144
136
145
## Security
137
146
138
-
If you discover any securityrelated issues, please email [aqangeles@gmail.com](mailto:aqangeles@gmail.com) instead of using the issue tracker.
147
+
If you discover any security-related issues, please email [aqangeles@gmail.com](mailto:aqangeles@gmail.com) instead of using the issue tracker.
0 commit comments