MeerKatDev

Results 15 comments of MeerKatDev

I'm having the same issue, was it merged so far?

+1 - no matter what I do, only `created_at` and `inserted_at` are saved as strings.

Probably the formatting is slightly better like that: ```php NovaBelongsToDepend::make('Instructor', 'instructor', User::class) ->placeholder('Choose an instructor') ->optionsResolve(function ($booking) { return \App\User::instructor()->ofBranch($booking->branch_id)->get(['id', 'name']); }) ->rules(new InstructorRequiredRule) ->nullable() // necessary to accept null...

still present :)

I changed minor version several times, it didn't help. I had to downgrade to node 12.

Is this library still supported? I tried to clean and recompile tesla, but to no avail. Also, there isn't any indication in the compilation process telling me that it works.

Also, when I put exactly `{:jason, ">= 1.0"}` in `deps`, mix gives an error

I would avoid setting this `\Jenssegers\Mongodb\Eloquent\Model::class` as hardcoded model for mongodb, but rather make it the default of a configurable value.

> Anyway @MeerKatDev, would you prefer to not have the base Model changed and change it manually? I think it's ok to keep it changed, because as of now and...

Ok, so one other thing I noticed is that there is no casting support. When I normally work with Laravel and MongoDB, objects need to be kept objects, because Laravel...