19 lines
327 B
PHP
Executable File
19 lines
327 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BookOption extends Model
|
|
{
|
|
protected $table = 'book_option';
|
|
public $timestamps = false;
|
|
|
|
public static function _hit($sKey)
|
|
{
|
|
$sValue = self::where("key", $sKey)->first()?->value;
|
|
|
|
return $sValue;
|
|
}
|
|
}
|