A Laravel 4 package to add simple database driven FAQs to a site
fbf/laravel-simple-faqs is a Laravel package for a laravel 4 package to add simple database driven faqs to a site.
It currently has 6 GitHub stars and 204 downloads on Packagist (latest version v0.1.0).
Install it with composer require fbf/laravel-simple-faqs.
Discover more Laravel packages by fbf
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel 4 package to add simple database driven FAQs to a site
Add the following to you composer.json file
"fbf/laravel-simple-faqs": "dev-master"
Run
composer update
Add the following to app/config/app.php
'Fbf\LaravelSimpleFaqs\LaravelSimpleFaqsServiceProvider'
Run the package migration
php artisan migrate --package=fbf/laravel-simple-faqs
Publish the config
php artisan config:publish fbf/laravel-simple-faqs
URI of the FAQs page
'uri' => 'faqs',
Page title of the FAQs page
'page_title' => 'My FAQs',
Meta description of the FAQs page
'meta_description' => 'This is the description for my FAQs page',
Meta keywords of the FAQs page
'meta_keywords' => 'These are the keywords for my FAQs page',
Determines whether to show questions at the top of the FAQs page that anchor to the FAQ below
'show_questions_at_top' => true,
You can use the excellent Laravel Administrator package by frozennode to administer your blog.
http://administrator.frozennode.com/docs/installation
A ready-to-use model config file for the Faq model (faqs.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).