LaraMart web application is an online marketplace management tool based on Laravel PHP framework made by @harkalygergo. All rights reserved!
- visitor can create user profile
- user can upload ads
- merchant accounts can be added via adminstration area (dashboard)
- registered merchants can bulk import and syncronize products / ads from external link as JSON
- Copy code from GitHub
- Run
npm install - Copy
env.exampleto.envand modify content - Generate key:
php artisan key:generate - Clear cache:
php artisan config:cache - Migrate database tables with
php artisan migratecommand - Build CSS with
npm run build - Register a new user profile and make it admin in database with changing
is_admincolumn. - Add cron job for
php artisan schedule:runcommand - Add database settings keys: HEAD_CODE_LOGGED_IN_NOT_ADMIN
- Update Composer dependencies with
composer updatecommand
# Clear Application Cache:
php artisan cache:clear
# Clear Route Cache:
php artisan route:clear
# Clear Configuration Cache:
php artisan config:clear
# Clear Compiled Views Cache:
php artisan view:clear
# Clear Event Cache:
php artisan event:clear
# Clear All Cache:
php artisan optimize:clear
# Clear All Cache (Laravel 8+):
php artisan optimize
# migrate
php artisan migrateAll rights reserved! © Copyright Harkály Gergő (https://github.com/harkalygergo)
