[Vuejs]-Laravel & vuejs: Builder could not be converted to string

3👍

You’ve constructed a query, but you haven’t actually run it until you call ->get() on it.

return $users->get();

Leave a comment