content-management-system
Content management system for laravel developers'. It's easy to install and run., (*1)
Server Requirements
The Laravel framework has a few system requirements. Of course, all of these requirements are satisfied by the Laravel Homestead virtual machine, so it's highly recommended that you use Homestead as your local Laravel development environment., (*2)
However, if you are not using Homestead, you will need to make sure your server meets the following requirements:, (*3)
PHP >= 7.0.0
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
XML PHP Extension
Installing
Run create-project command with composer to install this project., (*4)
Here is the full installation command -, (*5)
composer create-project ratulhasan/laravel-cms:dev-master
Now Change this options bellow within your .env,, (*6)
To rename .env.example, run, (*7)
php -r "copy('.env.example', '.env');"
DB_DATABASE=homestead // your database name
DB_USERNAME=homestead // your database user name
DB_PASSWORD=secret // your database password
For user registration and reset password mailing system
MAIL_DRIVER=smtp // change it as your desire MAIL DRIVER
MAIL_HOST=smtp.mailtrap.io // change it as your desire MAIL HOST
MAIL_PORT=2525 // change it as your desire MAIL PORT
MAIL_USERNAME=null // change it as your desire MAIL USERNAME
MAIL_PASSWORD=null // change it as your desire MAIL PASSWORD
Now run, (*8)
php artisan key:generate
php artisan migrate
php artisan db:seed
run project., (*9)
For Linux user
The stream or file "/var/www/html/laravel-cms/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied, (*10)
if see this kind of error, (*11)
just run this command from outside your project root directory to permit read and write, (*12)
sudo chmod -R 777 [directory_name]
For enable .htaccess
sudo gedit /etc/apache2/apache2.conf
Then find the line where there is, (*13)
, (*14)
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
, (*15)
replace "None" with "All", (*16)
AllowOverride All, (*17)
Admin panel
Admin url: project/root/admin/login
, (*18)
Email: admin@example.com
, (*19)
Password: 123456
, (*20)
Happy coding
Author
Ratul Hasan | Email, (*21)
Donate
If you find this project useful, you can buy author a glass of juice :tropical_drink:, (*22)
Buy me a coffee, (*23)
, (*24)
License
This project is licensed under the MIT License - see the LICENSE.md file for details, (*25)