public function creating(Schedule $schedule): void
{
// recurrence_weekdays is set in the form but not in fillable
$schedule->recurrence_weekdays // this will be null
// if I try this:
$request = request();
$request->input('recurrence_weekdays');
// the result is also null, but if I check with dd the array the data is in there. It just looks like because it is send with livewire everything gets a bit weird.
}
public function creating(Schedule $schedule): void
{
// recurrence_weekdays is set in the form but not in fillable
$schedule->recurrence_weekdays // this will be null
// if I try this:
$request = request();
$request->input('recurrence_weekdays');
// the result is also null, but if I check with dd the array the data is in there. It just looks like because it is send with livewire everything gets a bit weird.
}