thedevdojo / chatter

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

Any plans to update to Laravel 5.4 #52

Open symfonycoda opened 7 years ago

symfonycoda commented 7 years ago

Hi.

I really like this project, and at the moment I am working on some 5.3 stuff, but just wondering for the future...

thanks

Twitter: @symfonycoda

marktopper commented 7 years ago

I will sooner or later update this project to support 5.4. But it might take a while because I am busy with the Voyager v0.11 milestone which is set to be released this weekend, but there are simply to much work, so might take another week. First then I can look into updating Chatter with Laravel 5.4 support.

marktopper commented 7 years ago

I will look into adding Laravel 5.4 support the following week.

brazifly commented 7 years ago

Great ... we would really like to use this but all our apps are lar5.4. looking forward to the update.

chrisbbreuer commented 7 years ago

I agree. Would love to see Laravel 5.4 support. :-)

Ralkage commented 7 years ago

I'm using 5.4.6 without any issues, in fact, the only issue I really ran into is that color error lol

Thandaninkosi commented 7 years ago

Hi guys. I am using the latest version of laravel but I get the following errors when I run, php artisan db:seed --class=ChatterTableSeeder

========================================================= [Illuminate\Database\QueryException] SQLSTATE[42S02]: Base table or view not found: 1146 Table 'lara.chatter_categories' doesn't exist (SQL: delete from chatter_categories)

[PDOException] SQLSTATE[42S02]: Base table or view not found: 1146 Table 'lara.chatter_categories' doesn't exist

I am new to Laravel but from what I can see, Chatter Tables are not being created on my database even after following all the instructions to the letter.

m1guelpf commented 7 years ago

@marktopper Updates on this?

lchoate commented 7 years ago

@Thandaninkosi have you run your migrations?

artisan migrate --pretend 

That will show you if any migrations are waiting and what they are. You'll see the chatter create tables migrations. To commit them,

artisan migrate