Код: Выделить всё
protected function credentials(Request $request)
{
return array_merge($request->only($this->username(), 'password'),
['Type' => 1]);
}
Подробнее здесь: https://stackoverflow.com/questions/473 ... controller
Код: Выделить всё
protected function credentials(Request $request)
{
return array_merge($request->only($this->username(), 'password'),
['Type' => 1]);
}