Ped

Results 41 comments of Ped

It doesn't seem to work if boolean search is enabled. It's either-or.

> @imonoid did you try to overwrite the values at runtime? > https://laravel.com/docs/5.6/configuration#accessing-configuration-values It's a really hackish solution though. It would be nice if this would be added to the...

Have you found any solution? I am interested as well.

Yeah, I knew that it was not possible with just the hosts file. So there is no chance that Hozz will add this feature? What about supporting something like dnsmaq...

I am getting this error: > TypeError: Cannot read property 'icon' of undefined Not sure if it is related to Vue 3? I think it is, because it used to...

Very frustrating. I am not even sure whether I should downgrade Vue or wait for a fix for `vue-fontawesome`. @robmadole is there any ETA?

To @sbruchmann and @gligoran: what is your problem? You can provide a `bower.json` along with a published `package.json`. I am not sure why you are actively downvoting people wanting Bower...

@sbruchmann I agree, people should not spam with +1's. But it's like slapping a child for doing something wrong: the child does not know what it did wrong, you have...

Like @kilrizzy said, `use Authorizable` must be removed. You can just replace this: ``` php // ... class User extends Model implements AuthenticatableContract, AuthorizableContract, CanResetPasswordContract { use Authenticatable, Authorizable, CanResetPassword;...

> @pedzed removing Authorizable will make gate stops working... I know. You should either use Entrust or Laravel 5.1.11's built-in Authorization (http://laravel.com/docs/5.1/authorization). Why would you use both?