Query Builder memudahkan query kompleks tetap terbaca.
PHP$projects = $projectModel ->where('is_published', 1) ->orderBy('sort_order', 'ASC') ->orderBy('id', 'DESC') ->findAll();
Pola ini aman dipakai berulang untuk modul lain seperti artikel dan testimoni.