Files
coolcoth.com/app/Models/Page.php
T
2026-08-08 15:53:53 +08:00

16 lines
236 B
PHP

<?php
namespace App\Models;
use Core\Model;
class Page extends Model
{
protected $table = 'pages';
protected $orderBy = 'id';
public function bySlug(string $slug)
{
return $this->where('slug', $slug);
}
}