Colin Viebrock

Results 37 comments of Colin Viebrock

How are you creating the model? I would think if you create the `Author` first, this wouldn't be an issue ...?

Can you post the code of your controller or whatever that actually creates the models? I assume you're POSTing the ID of the `Author` model along with all the new...

I think instead of this: ```php $slug = SlugService::createSlug(Page::class, 'slug', $request->title); ``` you will have to create an actual `Page` model, attach an `Author` model, and then pass the Page...

Can't you just disable global scopes the normal way? ```php Content::withoutGlobalScopes()->popularTags(20); ```

You would need to set the [taggedModels](https://github.com/cviebrock/eloquent-taggable#taggedmodels) configuration. That said, it would probably be nice to add a `$tagService->deleteTag(...)` method that removed the tag and also detagged all the attached...

I'll take a look ... it's been a while. ;)

Tried updating jQuery and d3js to more recent versions, and I still get that ~~error~~ warning. A quick google search turns up this: https://github.com/mbostock/d3/issues/1805 So, I'd say this is an...

d3 has been around for quite some time and is used in lots of places, so I don't think it's necessarily unstable. And ditching it would mean no pretty circular...

If you can find something that does this, that'd be great. The circular graphs I think would be easy to do in other JS charting libraries, but I'm not sure...

Any response on this? I'd like to see support for this as well, and also binding so that if I duplicate a form field (e.g. with the [Appendo](http://deepliquid.com/content/Appendo.html) plugin), the...