У меня есть этот код ниже, где я удаляю пользователей по расписанию,
protected function schedule(Schedule $schedule)
{
$schedule->call(function () {
$users = User::onlyTrashed()->where(
'deleted_at', '<=', now()->subDays(1)->toDateTimeString()
)->get();
$users->each->forceDelete();
})->everyMinute(); // this is for test later changes to Daily
}
что я хочу сделать
- отправить электронное письмо и сообщить им, что их учетная запись была удалена непосредственно перед тем, как я удалю их учетную запись, $users->each->forceDelete();
, поэтому я добавил свое установочное электронное письмо к своей функции, например:
protected function schedule(Schedule $schedule)
{
$schedule->call(function () {
$users = User::onlyTrashed()->where(
'deleted_at', '<=', now()->subDays(1)->toDateTimeString()
)->get();
$user = $users->each;
Mail::to($user->email)->send(new UserAutoDeleted($user));
$users->each->forceDelete();
})->everyMinute(); // this is for test later changes to Daily
}
и он продолжает выдавать ошибку, такую как:
Symfony\Component\Debug\Exception\FatalThrowableError : Type error: Argument 1 passed to App\Mail\UserAutoDeleted::__construct() must be an instance of App\User, instance of Illuminate\Support\HigherOrderCollectionProxy given, called in C:\laragon\www\mynewsite\app\Console\Kernel.php on line 35
at C:\laragon\www\mynewsite\app\Mail\UserAutoDeleted.php: 21
17: * Create a new message instance.
18: *
19: * @return void
20: */
21: public function __construct(User $user)
22: {
23: $this->user = $user;
24: }
25:
26: /**
Exception trace:
1 App\Mail\UserAutoDeleted::__construct(Object(Illuminate\Support\HigherOrderCollectionProxy))
C:\laragon\www\mynewsite\app\Console\Kernel.php : 35
2 App\Console\Kernel::App\Console\{closure}()
C:\laragon\www\mynewsite\vendor\laravel\framework\src\Illuminate\Container\BoundMethod.php : 29
Please use the argument -v to see more details.
есть идеи?