├── LICENSE ├── README.md ├── composer.json └── src ├── Commands └── MigrationCommand.php ├── Models └── Rating.php ├── RatingServiceProvider.php ├── Traits └── Ratingable.php └── database └── migrations └── create_ratings_table.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/composer.json -------------------------------------------------------------------------------- /src/Commands/MigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/src/Commands/MigrationCommand.php -------------------------------------------------------------------------------- /src/Models/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/src/Models/Rating.php -------------------------------------------------------------------------------- /src/RatingServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/src/RatingServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/Ratingable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/src/Traits/Ratingable.php -------------------------------------------------------------------------------- /src/database/migrations/create_ratings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdullahGhanem/rating/HEAD/src/database/migrations/create_ratings_table.php --------------------------------------------------------------------------------