dev-master
9999999-devFast, simple Disqus integration for Laravel
MIT
The Requires
- php >=5.3.0
- illuminate/support ~4
- illuminate/config ~4
The Development Requires
by Ryan Tablada
laravel comments wardrobe
Wallogit.com
2017 © Pedro Peláez
Fast, simple Disqus integration for Laravel
This package for Wardrobe CMS allows quick integration of disqus comment systems using a simple call to Disqus::comments() from your theme views., (*1)
While designed for Wardrobe, this package works across all Laravel installations., (*2)
If you have Laravel 4 Package Installer installed you can install Wardrobe Disqus by running php artisan package:install rtablada/wardrobe-disqus and then publishing the configuration by running php artisan config:publish rtablada/wardrobe-disqus., (*3)
If you do not have Pacakge Installer, you can install Wardrobe Disqus by running composer require rtablada/wardrobe-disqus and then modifying your providers in app/config/app.php to include Rtablada\WardrobeDisqus\WardrobeDisqusServiceProvider and your aliases to include 'Disqus' => 'Rtablada\WardrobeDisqus\Facades\Disqus'. Then run php artisan config:publish rtablada/wardrobe-disqus., (*4)
Configuring Wardrobe Disqus is as easy as going into app/config/packages/rtablada/wardrobe-disqus/config.php and modifying the disqus_shortname to the shortname found at disqus.com/admin/settings/, (*5)
To include Disqus comments in your blog or project, simply include a call to Disqus::comments() and it will display the defaut Disqus comment form for each post or page., (*6)
In Wardrobe CMS it is best to place this in individual pages, or within your theme's post.blade.php so it may look like this:, (*7)
@extends(theme_path('layout'))
@section('title')
{{ $post->title }}
@stop
@section('content')
<section>
<h2 class="title">{{ $post->title }}</h2>
{{ md($post->content) }}
@include(theme_path('inc.tags'))
{{ Disqus::comments() }}
</section>
@stop
Fast, simple Disqus integration for Laravel
MIT
laravel comments wardrobe