jxlwqq/star-rating

Star Rating extension for laravel-admin.

1.0.1 2019-04-09 01:53 UTC

This package is not auto-updated.

Last update: 2024-04-23 01:50:50 UTC


README

This is a laravel-admin extension that integrates bootstrap-star-rating into laravel-admin.

Screenshot

68747470733a2f2f6c68332e676f6f676c6575736572636f6e74656e742e636f6d2f707543624e4c394c6c424d747938446d615a78417130794d38746575684d5f6845766f782d4e754a327837785765644e6873386e77536b315a6f384649534641737974383d77313336362d683736382d72772d6e6f

Installation

composer require jxlwqq/star-rating
php artisan vendor:publish --tag=laravel-admin-star-rating

Update

composer require jxlwqq/star-rating
php artisan vendor:publish --tag=laravel-admin-star-rating --force

Configuration

In the extensions section of the config/admin.php file, add some configuration that belongs to this extension.

'extensions' => [
 
     'star-rating' => [
     
         // set to false if you want to disable this extension
         'enable' => true,
         
         // configuration
         'config' => [
             'min' => 1, 'max' => 5, 'step' => 1, 'size' => 'xs', 'language' => 'zh',
         ]
     ]
 ]

More configuration can be found in the Bootstrap Star Rating Document.

Usage

Use it in the form form:

$form->starRating('rate');

More resources

Awesome Laravel-admin

License

Licensed under The MIT License (MIT).