-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
php artisan crud:generate workhours
Schema::create('workhours', function (Blueprint $table) {
$table->id();
$table->time('start');
$table->time('end');
});
php artisan crud:generate workhours
error: Cannot access offset of type string on string
But if i add a string field, works perfect.
Schema::create('workhours', function (Blueprint $table) {
$table->id();
$table->time('start');
$table->time('end');
$table->string('title')->nullable();
});
Metadata
Metadata
Assignees
Labels
No labels