Brief project description goes here.
- Regular installation with php artisan migrate and db:seed
For Windows (using XAMPP):
- Open your php.ini file, usually located in the xampp\php\ folder.
- Find the line ;extension=gd or ;extension=gd2 and remove the semicolon ; at the beginning of the line.
- Save the file and restart your Apache server using the XAMPP control panel.
- After installing and enabling the GD extension, the image conversions should work as expected.
For Ubuntu and other OS:
- Run the following command in your terminal: sudo apt-get update sudo apt-get install php-gd.
- This will install the GD extension and make it available for use in your application.