Steve Bauman
Steve Bauman
Hi, are you paginating your model results? Such as: `Users::paginate(25)`? The model needs to be paginated for the methods `appends()` and `links()` to exist on the collection object since they...
Ok, can you show your view code where you're rendering the table please?
You're right, through testing I've received this as well. Will be fixed shortly.
Work around for the time being, don't use the `showPages()` method, and render your pages yourself on Laravel 5 using `$items->render()`. Pagination was completely revamped in 5, and most methods...
@Gummibeer Yes, but this allows you to have multiple activity log database tables in a single application (or even on separate database) using the `activity()` helper, since we can override...
Hi @boehlim377, To my knowledge, SSO is all or nothing for the entire domain. I would recommend creating a sub-domain (i.e. `sso.my-app.com`) specifically for SSO users. I've seen this pattern...
Hi @Groganj89, I can definitely help you get up and running - though you have things commented out in your posted code snippets and I'm not sure if this is...
Hi @nahuelmellusso, You haven't saved the user you just constructed (look at the last line of code below): ```php // the user doesn't exist in the local database, so we...
> but the user exist ! Okay, for testing purposes, remove that code block to only allow existing users in your local database to authenticate. What session driver are you...
Hi @saabarukyatto, I'm not sure I understand your issue. You mention: > So to begin what I need is check written credentials in an API controller function to make sure...