Laravel 5.5 Simple CMS Website example using asgardcms

https://www.itsolutionstuff.com/post/laravel-55-simple-cms-website-example-using-asgardcmsexample.html

Laravel 5.5 Simple CMS Website example using asgardcms

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]:> mysqlEnter your database host [127.0.0.1]:> 127.0.0.1Enter your database port [3306]:> 3306Enter your database name [homestead]:> asgurdEnter your database username [homestead]:> rootEnter your database password (leave  for no password) [secret]:> rootDatabase successfully configuredEnter you application url (e.g. http://localhost, http://dev.example.com) [http://localhost]:> http://localhostUser Module                        Starting the User Module setup...                                       Enter your first name:> HardikEnter your last name:> SavaniEnter your email address:> admin@gmail.comEnter a password:> 123456Please confirm your password:> 123456Please wait while the admin account is configured...Do you want to remove composer.lock from .gitignore ? (yes/no) [yes]:> yesDo you want to remove package-lock.json from .gitignore ? (yes/no) [yes]:> yesThe application is now installedPlatform 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:

Read Also: Laravel 5.5 Create Custom Middleware example

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.

Last updated