thedevdojo / chatter

Chatter is a Simple Laravel Forum Package
https://devdojo.com/forums
MIT License
898 stars 294 forks source link

Integrate with Voyager? #49

Open AugmentBLU opened 7 years ago

AugmentBLU commented 7 years ago

Hello,

I'm just wondering if Chatter can be integrated with Voyager or is that still to come?

Thanks!

marktopper commented 7 years ago

You can easily integrate Chatter with Voyager yourself

marktopper commented 7 years ago

I might do a plugin that gives the integration out of the box. Will keep you posted.

Marascon commented 7 years ago

Would love to see a out of the box solution for this one. if any help needed on it i'm always willing to help

rifqifurqan commented 7 years ago

i am trying to integrate chatter and voyager, today, i found chatter_post table problem, this table come from chatter, when i integrating it with voyager and add A bread function to this table (chatter_post) it said error because voyager searching for chatter_posts table (the name it's different right? our table is chatter_post) , but you can easily fix this by define the table name on model in my case (chatter post error) : add ChatterPost.php into Http folder, the code is

`<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class ChatterPost extends Model { protected $table = 'chatter_post'; } ` it will fix it

sorry for my bad english :-)

BalamWeb commented 5 years ago

I might do a plugin that gives the integration out of the box. Will keep you posted.

where are you from the development of the plugin?