Download the PHP package fbf/laravel-testimonials without Composer
On this page you can find all versions of the php package fbf/laravel-testimonials. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download fbf/laravel-testimonials
More information about fbf/laravel-testimonials
Files in fbf/laravel-testimonials
Package laravel-testimonials
Short Description A Laravel 4 package for adding testimonials to a website
License MIT
Rated 4.50 based on 2 reviews
Informations about the package laravel-testimonials
Laravel Testimonials
A Laravel 4 package for adding testimonials to a website
Features
- Paginated index view with configurable results per page
- Draft/Approved status
- Soft deletes
- Configurable URLs, e.g. /testimonials and /testimonials/< testimonial slug >
- Fields for title, slug, image, YouTube video, content, source, published date, status, page title, meta description and keywords
Installation
Add the following to you composer.json file
"fbf/laravel-testimonials": "dev-master"
Run
composer update
Add the following to app/config/app.php
'Fbf\LaravelTestimonials\LaravelTestimonialsServiceProvider'
Run the package migration
php artisan migrate --package=fbf/laravel-testimonials
Publish the config
php artisan config:publish fbf/laravel-testimonials
Create the relevant image upload directories that you specify in your config, e.g.
public/uploads/packages/fbf/laravel-testimonials/original
public/uploads/packages/fbf/laravel-testimonials/resized
public/uploads/packages/fbf/laravel-testimonials/thumbnail
Configuration
See the src/config/config.php
file for options
Faker Seed
There is a faker seed that can be used to create fake testimonials content for the purposes of testing, to run it...
php artisan db:seed --class=Fbf\LaravelTestimonials\TestimonialsTableFakeSeeder
Administrator
You can use the excellent Laravel Administrator package by frozennode to administer your testimonials.
http://administrator.frozennode.com/docs/installation
A ready-to-use model config file for the Testimonial model (testimonials.php) is provided in the src/config/administrator directory of the package, which you can copy into the app/config/administrator directory (or whatever you set as the model_config_path in the administrator config file).
All versions of laravel-testimonials with dependencies
illuminate/support Version 4.*
cviebrock/eloquent-sluggable Version 1.0.*
judev/php-htmltruncator Version dev-master
fzaninotto/faker Version 1.3.*