�PNG  IHDR��;���IDATx��ܻn�0���K�� �)(�pA��� ���7�LeG{�� �§㻢|��ذaÆ 6lذaÆ 6lذaÆ 6lom��$^�y���ذag�5bÆ 6lذaÆ 6lذa{���� 6lذaÆ �`����}H�Fkm�,�m����Ӫ���ô�ô!� �x�|'ܢ˟;�E:���9�&ᶒ�}�{�v]�n&�6� �h��_��t�ڠ͵-ҫ���Z;��Z$�.�P���k�ž)�!��o���>}l�eQfJ�T��u і���چ��\��X=8��Rن4`Vw�l�>����n�G�^��i�s��"ms�$�u��i��?w�bs[m�6�K4���O���.�4��%����/����b�C%��t ��M�ז� �-l�G6�mrz2���s�%�9��s@���-�k�9�=���)������k�B5����\��+͂�Zsٲ ��Rn��~G���R���C����� �wIcI��n7jJ���hۛNCS|���j0��8y�iHKֶۛ�k�Ɉ+;Sz������L/��F�*\��Ԕ�#"5��m�2��[S��������=�g��n�a�P�e�ғ�L�� lذaÆ 6l�^k��̱aÆ 6lذaÆ 6lذa;���� �_��ذaÆ 6lذaÆ 6lذaÆ ���R���IEND�B` \Laravelista\Comments\Comment::class, /** * You can customize the behaviour of these permissions by * creating your own and pointing to it here. */ 'permissions' => [ 'create-comment' => 'Laravelista\Comments\CommentPolicy@create', 'delete-comment' => 'Laravelista\Comments\CommentPolicy@delete', 'edit-comment' => 'Laravelista\Comments\CommentPolicy@update', 'reply-to-comment' => 'Laravelista\Comments\CommentPolicy@reply', ], /** * The Comment Controller. * Change this to your own implementation of the CommentController. * You can use the \Laravelista\Comments\CommentControllerInterface. */ 'controller' => '\Laravelista\Comments\CommentController', /** * Disable/enable the package routes. * If you want to completely take over the way this package handles * routes and controller logic, set this to false and provide your * own routes and controller for comments. */ 'routes' => true, /** * By default comments posted are marked as approved. If you want * to change this, set this option to true. Then, all comments * will need to be approved by setting the `approved` column to * `true` for each comment. * * To see only approved comments use this code in your view: * * @comments([ * 'model' => $book, * 'approved' => true * ]) * */ 'approval_required' => true, /** * Set this option to `true` to enable guest commenting. * * Visitors will be asked to provide their name and email * address in order to post a comment. */ 'guest_commenting' => true, /** * Set this option to `true` to enable soft deleting of comments. * * Comments will be soft deleted using laravels "softDeletes" trait. */ 'soft_deletes' => true, /** * Enable/disable the package provider to load migrations. * This option might be useful if you use multiple database connections. */ 'load_migrations' => true, ];