<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ProfileInfo extends Model
{
    protected $table = 'profile_infos';
    protected $fillable = [
        'title',
        'value',
    ];
    public static function getOption(string $key)
    {
        return self::where('title', $key)->first() ?? null;
    }
}