Laravel Nova custom field for Spatie Opening Hours
You can install the package in to a Laravel app that uses Nova via composer:
composer require sadekd/nova-opening-hours-field
Laravel Migration
$table->json('opening_hours');
Laravel Model
protected $casts = [
'opening_hours' => 'array',
];
Nova Resource
NovaOpeningHoursField::make('opening_hours'),
- Explode interval input => time fields
- Validation
- Localization
- Exceptions
- Tests
The MIT License (MIT). Please see License File for more information.