<?php

class Banner extends Model {
    protected string $table = 'banners';

    public function getActiveBanners(): array {
        return $this->findWhere(['status' => 'active'], 'sort_order ASC');
    }
}
