├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── config └── config.php ├── database └── migrations │ └── 2020_01_01_000001_create_testimonials_table.php ├── phpstan.neon.dist └── src ├── Console └── Commands │ ├── MigrateCommand.php │ ├── PublishCommand.php │ └── RollbackCommand.php ├── Models └── Testimonial.php ├── Providers └── TestimonialsServiceProvider.php └── Traits ├── GivesTestimonials.php └── TakesTestimonials.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/config/config.php -------------------------------------------------------------------------------- /database/migrations/2020_01_01_000001_create_testimonials_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/database/migrations/2020_01_01_000001_create_testimonials_table.php -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/Console/Commands/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/src/Console/Commands/MigrateCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/PublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/src/Console/Commands/PublishCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/RollbackCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/src/Console/Commands/RollbackCommand.php -------------------------------------------------------------------------------- /src/Models/Testimonial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/src/Models/Testimonial.php -------------------------------------------------------------------------------- /src/Providers/TestimonialsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/src/Providers/TestimonialsServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/GivesTestimonials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/src/Traits/GivesTestimonials.php -------------------------------------------------------------------------------- /src/Traits/TakesTestimonials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinvex/laravel-testimonials/HEAD/src/Traits/TakesTestimonials.php --------------------------------------------------------------------------------