April 03, 2023, Laravel

Laravel Pagination is showing weird arrows

laravel-pagination-is-showing-weird-arrows

April 02, 2023, Laravel

How to prevent browser back button after logout in laravel?

Create a middleware using artisan: Replace content of PreventBackHistory.php with following content:

December 11, 2022, Laravel

How to ignore sanctum migrations from laravel

Just remove it by updating the App\Providers\AppServiceProvider.php file

December 09, 2022, Laravel

Access denied for user ‘root’@’localhost’ (using password: YES) in laravel 8

This can be fixed easily by doing the following changes –

December 09, 2022, Laravel

How to override laravel artisan commands?

This is very simple, just create new command with any name and replace the $signation. Just follow the below code to do this –

December 09, 2022, Laravel

Laravel Migration Error: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes

This is a very simple fix, you just need to add a database engine for MySQL database in the “config/database.php” file.