You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class BirthdayMessage extends SoftDeletesModel
|
|
{
|
|
|
|
/**
|
|
* 随机获取一条启用的生日祝福文案
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public static function getRandomMessage()
|
|
{
|
|
$message = self::where('status', 1)
|
|
->inRandomOrder()
|
|
->first();
|
|
|
|
return $message ? $message->content : null;
|
|
}
|
|
}
|
|
|