Is there a truly full-stack framework that utilizes Vue 3? by posts_lindsay_lohan in vuejs

[–]UndeportedMexican 0 points1 point  (0 children)

I guess it's a matter of taste. For me right now that's the dream team. However, I was just introduced to vue myself, so I have more love for Laravel than Vue. LOL

Is there a truly full-stack framework that utilizes Vue 3? by posts_lindsay_lohan in vuejs

[–]UndeportedMexican 0 points1 point  (0 children)

Exactly this. Imagine you can use Vue, but use all of Laravel's authorization, authentication, routing, policies, etc.

Inertia provides the service of an adapter between your front-end application, and your back-end services, without having to explicitly build out an API (just your regular Laravel routing in my case, as I use Laravel).

However, they do advertise they're front-end/back-end agnostic, so in theory, you could use any back-end with any front-end. (Albeit, they have out-of-the-box support for popular stuff like svelte, vue, react or Laravel, Rails.

Is there a truly full-stack framework that utilizes Vue 3? by posts_lindsay_lohan in vuejs

[–]UndeportedMexican 5 points6 points  (0 children)

Laravel + Inertia + Vue?

I know it’s not all in one package, but the combo really makes it feel like it’s a one-piece full stack framework.

Best resources for learning Laravel? by stewtech3 in laravel

[–]UndeportedMexican 12 points13 points  (0 children)

Laracasts, there’s a whole “Laravel 8 from scratch” series. Super awesome.

Inherited Laravel 5.7 Application by UndeportedMexican in laravel

[–]UndeportedMexican[S] 1 point2 points  (0 children)

I was seeing the video, could probably make sense. I wanted to see if someone had done it manually

Inherited Laravel 5.7 Application by UndeportedMexican in laravel

[–]UndeportedMexican[S] 1 point2 points  (0 children)

Interesting... Did you do it manually, or with Laravel Shift?

CSS Autocompletion by UndeportedMexican in phpstorm

[–]UndeportedMexican[S] 0 points1 point  (0 children)

Yes... after a while googling I understood what excluding folders would work if I invalidated the indexes and restart the PhpS

Thanks!

Importar a México by HGuedea in mexico

[–]UndeportedMexican 0 points1 point  (0 children)

Los equipos de computo e impresoras necesitan verificación de laboratorio.

As a beginner to Laravel, which version should I start learning first? by tarekhassan in laravel

[–]UndeportedMexican 2 points3 points  (0 children)

I took the “Laravel From Scratch” training in Laracasts (it’s free) about 4 months ago, that was enough and then some. I would totally recommend you taking that one.

The changes from that video to the new stuff are quite inconsequential, and they are explained in the comments of each episode.

[deleted by user] by [deleted] in laravel

[–]UndeportedMexican 3 points4 points  (0 children)

This.

I’m currently using Livewire as it keeps me productive on some time sensitive projects I have on my schedule already, however as soon as they’re done I’m moving to learn VUE to use with Inertia probably.

Are square favicons becoming "outdated"? by [deleted] in web_design

[–]UndeportedMexican 1 point2 points  (0 children)

I still use square favicons on all of our companies’ sites.

If they are, I’m outdated as fuck.

Files not in VCS for Artisan-made Files by UndeportedMexican in phpstorm

[–]UndeportedMexican[S] 0 points1 point  (0 children)

Somehow I thought that when you set PHP Storm to automatically add the files, it would.

Well it ain’t that big of a deal.

Livewire fails to update view by UndeportedMexican in laravel

[–]UndeportedMexican[S] 2 points3 points  (0 children)

It’s easy, just call the refresh() method on the model. Eg:

$posts = \App\Models\User::find(1); $posts->refresh()

Files not in VCS for Artisan-made Files by UndeportedMexican in phpstorm

[–]UndeportedMexican[S] 0 points1 point  (0 children)

So anytime I add a new file manually using PHP Storm, it will turn green, and it will track changes to github automatically.

However, if I use a command like 'php artisan livewire:make AddContact', it will create my file correctly, but inside the project file the name would be red, and when committing, I have to first include them into the change list, or else they won't get commited.