<?php
namespace VendorName\PackageName;
use Illuminate\Support\ServiceProvider;
class ArticlesController < ApplicationController
def index
# Bounded queries: without preload, article.author in the view raises.
@articles = Article
.published
.preload(:author, :tags)