123456789101112131415161718 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Support\Facades\DB;
- class SearchStatistics extends Model
- {
- protected $table = 'search_statistics';
- public $timestamps = false;
- public static function selectHotSearch($status = 0)
- {
- $data = DB::table('search_statistics')->select('id', 'value')->where('status', $status)->limit(10)->get()->toArray();
- return $data;
- }
- }
|