21 lines
No EOL
371 B
PHP
21 lines
No EOL
371 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class BlogModel extends Model
|
|
{
|
|
protected $table = 'blog';
|
|
|
|
public function getBlog($slug = false)
|
|
{
|
|
if ($slug === false)
|
|
{
|
|
return $this->findAll();
|
|
}
|
|
|
|
return $this->asArray()
|
|
->where(['slug' => $slug])
|
|
->first();
|
|
}
|
|
|
|
} |