bbprojectnet

Results 17 comments of bbprojectnet

Yes, v2.1.14.

Any news on this? ;)

Any chance of accepting this PR? I'm using branch 2.0, and i can't migrate to Laravel 8 :(

Yes, sure: ``` public function fields(): array { return [ HashId::make()->alreadyHashed(), Str::make('dataType')->readOnly(), DateTime::make('createdAt')->sortable()->readOnly(), DateTime::make('updatedAt')->sortable()->readOnly(), BelongsTo::make('patient')->readOnly(), MorphTo::make('data')->types('declarations', '...')->readOnly(), ]; } ```

Document model: ``` class Document extends Model { use Concerns\BelongsToPatient; use Concerns\HashRouteKey; use HasFactory; use SoftDeletes; protected $with = [ 'data', 'data.attachment', ]; /** * Data relation * * @return...

`$with` attribute in Document has not effect on this bug, with or without `$with` is the same.

Yes, it's works, I did exactly the same to workaround this problem today morning :)

Yes, i'm also looking forward to atomic operations :)