dbf

Results 10 comments of dbf

@CarterBland @clemblanco True, it should be `$object->some_date` to actually access the accessor. `$object->ordered_at` will simply return a Carbon instance. This example also lacks understanding from many perspectives. - It makes...

@jmcondeprol I can confirm the problem. Probably has nothing to do with index. Reference to `this.pond` in `const handleFileProcessing` located in `file-upload.js` is lost (`null`) while component states changes after...

Removing the additional `this.pond = null` in the `destroy` method keeps the reference. https://github.com/filamentphp/filament/blob/2f5ac6078d522672a437b56d573a78ecf869a67a/packages/forms/resources/js/components/file-upload.js#L309-L314 Using `FilePond.destroy` from its source should be enough. Though I think the overall implementation using sortablejs...

@albertgpdevtrioteca It would be better to post an issue on [nova-dependency-container](https://github.com/epartment/nova-dependency-container). Short version is, I'm currently using the [development branch](https://github.com/epartment/nova-dependency-container/tree/development), which is the only branch so far that supports flexible...

@brandonferens Any update on the rewrite status? I'm currently on the verge of rewriting the package myself. > We are actually working on a full rewrite of the package which...

@brandonferens I'm the maintainer of the nova dependency container. Is there chance I can see any progress for the branch addressing the compatibility issues? I dived into your code to...

@atmediauk you should be able to use all visiblity methods listed in nova's documentation in the section [Showing / Hiding Fields](https://nova.laravel.com/docs/1.0/resources/fields.html#showing-hiding-fields). So this example .. ```php Slug::make(...) ->hideWhenCreating() ->hideWhenUpdating() ```...

> @wize-wiz I'm sorry I've been neglecting this repo. I like your idea, it's simple yet effective. Would you still like to make a PR with this? I'd be grateful!...

@cgarofalo Only if I understood it correctly. You could distinguish update and create with the given `$request` and `readonly` method. ```php Slug::make(...)->readOnly($request->isUpdateOrUpdateAttachedRequest() ? true : false) ``` This will prevent...

@cgarofalo Ah sorry, this behaviour isn't cross-browser. I create a new issue and PR if the author is ok with an added feature.