Illya Moskvin

Results 20 comments of Illya Moskvin

I'm running into a similar issue, but I think it might be a Laravel issue that's present even without this package. I'm currently upgrading one of our applications to Laravel...

[ui-tree-node](https://github.com/angular-ui-tree/angular-ui-tree#ui-tree-node) has scope methods `collapse()`, `expand()`, and `toggle()`. The trick is to figure out a way to access the child scope(s) of your `ui-tree-node`'s from the enclosing controller. Based on...

Thanks for the contribution! (First PR for AIC's data hub 🎉) We are currently all-hands-on-deck on another project, but we should have a chance to revisit the more architectural aspects...

This vexes me greatly. I'm also trying to build a REST API, and I've hit the same dead-end. Here's my fix in Relationship.php around line 170: ``` // Copy over...

This seems a bit insane to me, but I imagine that a nested has_many through relationship might be defined as follows: ``` class Category extends ActiveRecord\Model { static $table_name =...

:warning: Shift found uses of the old `array()` syntax. Laravel adopted the short array syntax `[]` since it became available in PHP 5.4.

:warning: Shift found instances of string based class references. Laravel adopted the `::class` static property since it became available in PHP 5.5. You should update your code to use references...

:warning: The following files reference Laravel facades through the global namespace. For example, you're referencing `\DB` or importing `use DB`. Instead import `Illuminate\Support\Facades\DB` and reference `DB`. While global references are...

:warning: The following classes do not extend the standard Laravel *Model* and *Controller* class. This may add complexity which makes your application harder to upgrade. Often a *trait* can be...

:warning: The following controllers contain actions outside of the 7 resource actions (`index`, `create`, `store`, `show`, `edit`, `update`, `destroy`). For more details, review [the docs](https://laravel.com/docs/5.7/controllers#resource-controllers) or watch [Cruddy by Design](https://www.youtube.com/watch?v=MF0jFKvS4SI)...