Using joins in Eloquent

This query will join the engineers table and the courses table to the qualifications table and will make the engineers.name column available as engineers_name in the view. Remember relationships on this query (qualifications) will not be available in the view. Example will not work.

Selectboxes in Vue.js

When using selectboxes in Vue.js you often need to pre-select an option when presenting an edit form for example. The script then sets the original value on the mounted life-cycle hook.