Christopher Pfeifer

Results 14 comments of Christopher Pfeifer

@dougmaitelli thank you for explaining that, I wasn't able to figure out how to find the issues similar to you showed, but by removing all the notify actions in the...

Upon going through the error some more I've narrowed down the issue to this segment of code within `SearchableTrait.php` ``` php public static function getProxy() { if (!static::$__es_proxy) { $instance...

I would wonder why the saved Model event is not being triggered when you run `delete()` followed by `restore()` because when it restored the `deleted_at` and `updated_at` fields are updated...

Perfect lol

@iverberk did you get a chance to look over this code? I just tried installing Larasearch again but looks like it still installed the L4.2 version.

@thangngoc89 it seems to work. I haven't had much time to work on it but I was able to get it pulled in and when I ran the `larasearch:paths` with...

By bad I thought you tagged me because I got the email haha. I'd like to see this merged as well.

I said I thought you did because I got the email. You didn't.

@thangngoc89 one thing I have noticed is when running the `reindex` command I ran into ``` ssh [ErrorException] Undefined index: errors ``` during the first batch. Going through the code...

In Laravel 5 everything is namespaced and you must namespace the Model you tell larasearch to index. ``` ssh php artisan larasearch:paths App\\Models\\User ``` That is my example. Notice you...