A basic Laravel 5.5 image uploader based on Blueimp jQuery File Uploader, with database storage and deletion.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. Please avoid running in production environment since no authentication/authorization layer is provided.
Please refer to Laravel 5.5 requirements.
Download or clone the repository, then open terminal and run:
composer install
All required packages will be installed
Rename .env.example
to .env
and fill in the required Database fields. Then run this command in terminal:
php artisan migrate
All required database tables will be created
Previous file .env
does not come with a predefined APP_KEY
value. Please generate it using this command in terminal:
php artisan key:generate
Open terminal and start Laravel development server running:
php artisan serve
Of course you can configure your own AMP server (I love Laragon on Windows)
Then open your browser, go to your brand new application and start uploading images :-)
Acknowledgments go to these tools and packages that make a developer's life easier ;-)
Any contribution for bug fix or improvements is well appreciated! Please notice that this is just a starting example: I can't guarantee support or answering issues, sorry
- Ivan Sammartino - IWStudio
This project is licensed under the MIT License - see the LICENSE.md file for details