Sam Axe

Results 29 comments of Sam Axe

I have used this CDN https://cdnjs.cloudflare.com/ajax/libs/Ladda/1.0.6/ladda-themeless.min.css

In my case I needed to add baseUrl config to get it to work ``` publicRuntimeConfig: { axios: { baseURL: '......' } }, modules: [ ['@nuxtjs/axios',{proxyHeaders:false}] ], ```

> I get an error like this, I don't know how to solve it. > > Nuxt version v3.0.0-27324955.23397e6 > > ![image](https://user-images.githubusercontent.com/11307280/146866505-62a1f4a9-36cc-4487-92a0-051dc6964920.png) please check my answer above, you need to...

> The same problem here. I am using laravel 9.11 with [email protected], [email protected] and [email protected] > > If I downgrade socket.io-client from 4.5.0 to 2.4.0 it works.... > > I...

Downgrade worked for me too, just have to make sure to import io like this: `import io from "socket.io-client";` versus `import { io } from "socket.io-client";` that is used in...

that is primary reason why I'm debating what to use here. I love Lumberjack capabilities and whole MVC approach, but one thing that I'm missing is db migrations, that Acorn...

@stefanfisk can you elaborate a bit more how you generate migration files and how you run them?

> MigrationServiceProvider Thanks for the answer, but it seems that some other service registers migrations, do you have any other services enabled?

So on Laravel setup, if I comment out ``` Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class``` I am no longer able to see migration commands. I assume this is because of `ArtisanServiceProvider::class` that is called in...

The weird part is that I don't get any errors These are the providers I'm registering, any chance you could share yours so I could compare, I'm sure I'm missing...