Laravel Simple CMS Website using Asgardcms Example
Today i am going to share with you how to use cms in laravel 5.5 application. As we know wordpress is best cms in the world and almost people like to use cms for his company website or blog. But if we think about codding style, security or structure then laravel framework is a best. So There are several provide laravel cms to make quick back end admin panel and also work like wordpress blog.
So, in this post i would like to introduce same simple cms using laravel, that know as "asgard cms". asgard cms provide very simple modules function and you can simply quick create modules like on wordpress. You can also get there are new theme from their website. They also provide many feature like as bellow:
- Dashboard
- Page Management
- Media Management
- Flexible Permissions
- Easy Module Management
- Customise your Menus
- Settings
- Role and Permission
- Themes
So, here i will give you very simple and quick example to create project or website in laravel application. So you have to just simple follow bellow some command and get quick setup and using laravel application.
So let's just run bellow command for install asgardcms project.
Install Asgardcms Project:
composer create-project asgardcms/platform asgard
After run above command, you will get fresh installation of asgardcms project so now you have to install asgardcms configuration by following command:
Install AsgardCMS Configuration:
php artisan asgard:install
After run above command you have to setup, your project configuration like as bellow i gave you.
Configuration:
Enter your database driver (e.g. mysql, pgsql) [mysql]:
> mysql
Enter your database host [127.0.0.1]:
> 127.0.0.1
Enter your database port [3306]:
> 3306
Enter your database name [homestead]:
> asgurd
Enter your database username [homestead]:
> root
Enter your database password (leave
for no password) [secret]: > root
Database successfully configured
Enter you application url (e.g. http://localhost, http://dev.example.com) [http://localhost]:
> http://localhost
User Module
Starting the User Module setup...
Enter your first name:
> Hardik
Enter your last name:
> Savani
Enter your email address:
> admin@gmail.com
Enter a password:
> 123456
Please confirm your password:
> 123456
Please wait while the admin account is configured...
Do you want to remove composer.lock from .gitignore ? (yes/no) [yes]:
> yes
Do you want to remove package-lock.json from .gitignore ? (yes/no) [yes]:
> yes
The application is now installed
Platform ready! You can now login with your username and password at /backend
Now we are ready to run our laravel cms using bellow command:
php artisan serve
Now you can open bellow url on your browser:
http://localhost:8000/backend
Now simple use bellow credential:
Email: admin@gmail.com
Password: 123456
Then you can get dashboard, you can see how to manage it. i am going to set three screen shot so you can see how it looks.
Looks 1:
Looks 2:
Looks 3:
You can get more information about asgardcms from here : Click Here
I hope it can help you.
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Razorpay Payment Gateway Example
- Laravel Blade Switch Case Statement Example
- Laravel Eloquent firstWhere() Example
- How to Generate BarCode in Laravel?
- Laravel Fullcalendar Example Tutorial
- How to Install and Use Moment JS in Laravel?
- How to Remove Column from Table in Laravel Migration?
- Laravel Multiple Where Condition Example
- Laravel Bootstrap Tag System Example Tutorial
- Laravel Ajax Crop Image Before Upload using Croppie JS
- Laravel Image Gallery CRUD Example Tutorial
- Laravel Create Quick Backend Admin Panel Tutorial
- Laravel AJAX CRUD Tutorial Example