E
Size: a a a
E
SK
'token' => 'required|string|max:255|same:'.$user->auth2_token,но если я теле запроса пишу связку token fooooo то почему то сравнивает имя параметра (token) с значением из модели юзера если поменю местави в запросе value и key то валидация пропускает same
ВС
E
AS
SK
EG
'token' => Rule::exists('users')->where(function ($query) use ($user){
return $query->where('token', $user->auth2_token);
})
RE
$schedule->job(new RecalculationOfPricesJob())
->dailyAt('12:13')->evenInMaintenanceMode();
SK
PL
$schedule->job(new RecalculationOfPricesJob())
->dailyAt('12:13')->evenInMaintenanceMode();
PL
RE
PL
RE
PL
RE
VY
RE
VY
$schedule->job(new RecalculationOfPricesJob())
->dailyAt('12:13')->evenInMaintenanceMode();
RE