Posts

Showing posts from January, 2019

How to implement a Laravel 5 Rating System

Image
Here I will show you how to build a star-rating system in your laravel 5.5 web application. In this example, I have installed a laravel ratable composer package and created posts table in PHP, my admin. So you have to follow the below simple steps and you will get a preview as the screenshots at the end of this page. step 1 ( install laravel 5.+ application ) first, you have to install laravel 5.5 application. You can install laravel via laravel installer or via laravel create- project. via laravel installer  first, downl oad the laravel installer using the composer. Using   composer global require laravel / installer Now you can create the project using the below command. laravel  new blog via Composer create-project Open your terminal and run below command. It will create a new project called a blog composer create - project -- prefer - dist laravel / laravel blog now run the below command on your terminal to start development server at ...