Skip to content

chandrakantapanda/laravel-multiple-image-upload

Repository files navigation

Laravel Separate Multiple Image upload in Laravel 8

This is an example of a creating Multiple Image upload with Laravel

After clone you can run it

how to achieve follow a few steps

Getting Started

  1. Clone the repository and install composer packages by running:
composer update 
  1. Create .env file from env.example
copy .env.example .env
  1. Generate Application Key for your application.
php artisan key:generate
  1. Run migration for create users table, admins tables :
php artisan migrate --seed
  1. Run your Laravel application
    php artisan serve
  1. Go to http://127.0.0.1:8000/

License