• Если вы перенесли свой ресурс с http на https, вам не нужно выполнять инструкции из раздела "Обновление данных в Google".
• Убедитесь, что вы зарегистрированы в Search Console как подтвержденный владелец обоих сайтов.
Sometimes a model may have many related models, yet you want to easily retrieve the "latest" or "oldest" related model of the relationship. For example, a User model may be related to many Order models, but you want to define a convenient way to interact with the most recent order the user has placed. You may accomplish this using the hasOne relationship type combined with the ofMany methods:
public function project(): HasOne
{
$instance = $this->newRelatedInstance(Project::class);
$relation = new HasOne($instance->newQuery(), $this, DB::raw('project_user.user_id'), $this->getKeyName());
return $relation->leftJoin('project_user', 'project_user.project_id', '=', 'projects.id');
}
class User extends Model
{
public function projects(): BelongsToMany
{
return $this->belongsToMany(Project::class);
}
}
class Project extends Model
{
public function scopeActive(Builder $query): void
{
$query->where('active', 1);
}
}
dump(User::find(1)->projects()->active()->get());
public function __invoke($attribute, $value, $fail)
{
$dishesRequest = collect($value);
$data = Dishe::whereIn('id', $dishesRequest)->Active()->whereHas('menu', function ($query) {
return $query->where('project_id', $this->project->id)->Active();
})->selectRaw('count(1) as count, sum(price) as sum');
if($data->count != $dishesRequest->count()){
return $fail(__('validation.exists'));
}
# Получаем список блюд по массиву идентификаторов
$totalDishes = $data->sum;
$total = $this->order ? $totalDishes + $this->order->totalPrice : $totalDishes;
if ($total < 1 || $total > 150000) {
return $fail('Сумма заказа должна быть от 1 ₽ до 150 000 ₽');
}
}
'process.env': JSON.stringify(dotenv.config().parsed),
DefinePluginConfig
- переопределили process.env
то почему ожидаете что он вам настоящие переменные окружения увидитplugins: [htmlWebpackPluginConfig, miniCssExtractConfig, ESLintPluginConfig],
DefinePluginConfig
- process.env
заработать