Codex Addon - Adds comments to your documents like Disqus or create your own adapter
codex/comments is a Laravel package for codex addon - adds comments to your documents like disqus or create your own adapter.
It currently has 0 GitHub stars and 33 downloads on Packagist.
Install it with composer require codex/comments.
Discover more Laravel packages by codex
or browse all Laravel packages to compare alternatives.
Last updated
Adds comments to your documents. The addon uses adapters to provide Codex with a comment system. You can either use one of the included adapters or use a custom adapter.
Includes the following adapters:
composer require codex/comments
php artisan codex:addons:enable codex/comments
config/codex-comments.php
[
'default' => 'disqus',
'connections' => [
'disqus' => [
'driver' => 'disqus',
'shortcode' => 'codex-project',
],
],
]
[project]/config.php [project]/[revision]/revision.yml [project]/[revision]/[document] (as attributes)
[
'processors' => [
'enabled' => [
// ...
'comments' => true
],
'comments' => [
'enabled' => true,
'connection' => 'disqus'
]
]
]
Copyright 2019 Robin Radic - MIT Licensed