Implode and explode functions in PHP are commonly used function in PHP. These function may be used in PHP frameworks such as Laravel, CodeIgniter. Implode […]
Method Illuminate\Database\Schema\Blueprint::big does not exist.
If you are facing this error Method Illuminate\Database\Schema\Blueprint::big does not exist. in your laravel project, you need to check which version you are running in […]
How to rollback specific table migration in Laravel
php artisan migrate:rollback – -path=/database/migrations/2022_specifi06_25_115909_create_states_table.php For recreating the migration php artisan migrate:refresh – -path=/database/migrations/2022_10_27_103718_create_hotel_rooms_table.php
Laravel Page Not Found Error 404 Not Found, but route exist in Laravel
The “Page Not Found” error in Laravel typically occurs when Laravel cannot locate the requested route. Here are some common causes and troubleshooting steps: 1. […]