rtablada/wardrobe-disqus

Fast, simple Disqus integration for Laravel
906 15
Install
composer require rtablada/wardrobe-disqus
PHP:>=5.3.0
License:MIT
Last Updated:Jan 15, 2014
Links: GitHub  ·  Packagist
Maintainer: rtablada

Wardrobe Disqus

This package for Wardrobe CMS allows quick integration of disqus comment systems using a simple call to Disqus::comments() from your theme views.

While designed for Wardrobe, this package works across all Laravel installations.

Installation Using Laravel 4 Package Installer

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.

Installing Using Composer

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.

Configuring Wardrobe Disqus

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/

Using Wardrobe Disqus

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.

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:

@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

Related Packages

persson/comments

A simple comments package

44 1
escapeboy/disqus

Disqus API simple usage in Laravel 4

79 3
fbf/laravel-comments

A Laravel 4 package for adding commenting to a website that has user accounts

4,626 20
laravelista/comments

Comments for Laravel.

194,503 741
d-te/laravel-disqus

Disqus integration for Laravel

45 1