@JarekTkaczyk my new error Call to undefined method Illuminate\Database\Eloquent\Collection::paginate()
Jul 7, 2015
33
Level 2
Level 2
@JarekTkaczyk I think I got it to work I had to delete->get()
so I changed this
Post::search('%'.$query.'%', ['title', 'subtitle'])->get()->paginate(15)
to this
Post::search('%'.$query.'%', ['title', 'subtitle'])->paginate(15)
Level 2
This is what I was looking for @JarekTkaczyk. searches all tables just by adding them. Theres one thing I'd like to know. The Form and Html facade are now 'Collective\Html\HtmlFacade', and are maintained by somebody else. they had another name that I forgot. They are maintained by collective now. should you abandon this project, will this stop working after a few version upgrades of laravel? will my app break? whats protocol for when/if that happens? thanks for your time.
Please or to participate in this conversation.