Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Tinker 将用户添加到 oauth_clients 表中,但我不知道如何在 tinker 上创建客户端实例。
客户端实例是什么意思?如果这是一个模型,你可以试试
$client = new \App\Client();
然后使用它
$client->name = "Some name"; $client->methodName();
ETC