Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- Simple, fast routing engine.
- Powerful dependency injection container.
- Multiple back-ends for session and cache storage.
- Expressive, intuitive database ORM.
- Database agnostic schema migrations.
- Robust background job processing.
- Real-time event broadcasting.
Laravel is accessible, powerful, and provides tools required for large, robust applications.
Clone the repository:
git clone https://github.com/dj0nny/larastore.gitCheck if PHP and Composer is installed:
php -v
composer -vInstall the dependencies:
composer installRename the .env.example to .env and replace with your database configuration.
Then run:
php artisan serveFor running the migrations:
php artisan migrateYou can also migrate and seed the database with dummy data using:
php artisan migrate --seedFor dropping all the tables and run the migrations and the seeder:
php artisan migrate:refresh --seed