Replies: 1 comment 2 replies
-
Only the Eloquent, I guess. class YourView extends Eloquent {
protected $table = 'your_db_view';
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Occasionally, in tables, we employ multiple table joins to fetch and display data. In certain scenarios, using Query Builder instead of Eloquent Builder may be necessary. Are there any ways to implement this approach?
Beta Was this translation helpful? Give feedback.
All reactions