We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
asStructuredData
I'm trying to store OpeningHours in database as array and trying to do it like that:
OpeningHours
$timetable = OpeningHours::create([ 'monday' => ['09:00-12:00', '13:00-18:00'], 'tuesday' => ['09:00-12:00', '13:00-18:00'], 'wednesday' => ['09:00-12:00'], 'thursday' => ['09:00-12:00', '13:00-18:00'], 'friday' => ['09:00-12:00', '13:00-20:00'], 'saturday' => ['09:00-12:00', '13:00-16:00'], 'sunday' => [], 'exceptions' => [ '2016-11-11' => ['09:00-12:00'], '2016-12-25' => [], '01-01' => [], // Recurring on each 1st of January '12-25' => ['09:00-12:00'], // Recurring on each 25th of December ], ]); $array = $timetable->asStructuredData(); $newOpeningHours = OpeningHours::createFromStructuredData($array);
But i'm getting an error: Invalid openingHoursSpecification item at index 13: Invalid validFrom date
Invalid openingHoursSpecification item at index 13: Invalid validFrom date
How can I make it working?
The text was updated successfully, but these errors were encountered:
Allow date without year in validFrom/validTo structured data
02d3cfb
Fix #252
ce002fc
Sorry for the long wait, fixed in 4.0.1
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I'm trying to store
OpeningHours
in database as array and trying to do it like that:But i'm getting an error:
Invalid openingHoursSpecification item at index 13: Invalid validFrom date
How can I make it working?
The text was updated successfully, but these errors were encountered: