A content management system (CMS) in Laravel
1. Clone From Github
git clone https://github.com/kothing/CMS-laravel-test.git
2. Go to that folder
cd cms-laravel-test
3. Required Configuration
PHP
- fileinfo extensions
- putenv() enable
- proc_open() enable
Permission for directories.
- storage 777
- bootstrap/cache 777
- public 777
4. Install Composer
composer install
5. Create and config env file
Create a .env file by cloning .env.example file
6. Generate app APP_KEY
php artisan key:generate
7. Create a Database named
your-database
8. Run Migration & Seed
php artisan migrate:fresh --seed
9. Run On Local Machine
start Laravel's local development server
php artisan serve
and open browser at http://localhost:8000
10. Go to CMS admin dashborad
Login Now by giving this data.
Username: xxx
Password: xxx
You can find it in database/seeders/DatabaseSeeder.php
http://site-domain/dashboard
php artisan cache:clear
php artisan route:cache
php artisan config:cache
php artisan view:clear