good stuff, some subjects like this one for example have a lot of detail and deserve a longer video rather than getting chopped up or simplified to oblivion
@jkg_1Ай бұрын
Sir, we need a video about storage, symlinks, storage maintenance. Thanks
@LaravelDailyАй бұрын
Ok adding to my to-do list
@hardiklakhalani6268Ай бұрын
Right. Also seen some codebases with "bucket thing" in such modular way that we can choose where the files get stored.
@shire794929 күн бұрын
How about "please"
@fernandolamas33027 күн бұрын
awesome lesson!!, huge thanks sr.!
@drugoviic24 күн бұрын
I always create a .env.testing and use that to set my preferred database for testing i.e if youre using some sql methods unavailable in sqlite
@manojbist379325 күн бұрын
Thanks for the lesson. Can you please make a video on CI/CD using different tools.
@LaravelDaily25 күн бұрын
It's a very broad topic, and each tool is even deeper. So maybe a separate COURSE about it, would you buy it?
@ziemustdie29 күн бұрын
Finally! Thanks so much
@darkbelg11 күн бұрын
Should you use route names in tests? If you have a stand alone vue app. You can change the laravel urls and the tests will still show green. While your vue app will just fail or any external api.
@LaravelDaily11 күн бұрын
My rule of thumb is always use route names, no matter the context.
@holakonoobАй бұрын
if u have a big app like have 200+ model then its better to like use baseCrudTest class to not repeat it
@capins8529 күн бұрын
Nice explanation as always! I have a doubt: never find a tutorial to test Filament projects. Really don't know how to start
@LaravelDaily29 күн бұрын
What exactly you want to test in Filament? Forms/tables are internally tested in core, and if you want to test on top, it's mostly Livewire testing, and it's all in the docs.
@capins8529 күн бұрын
@@LaravelDaily It's complicate to answer you briefly: I learn Laravel with your video and courses, so I educate myself to "Separation of concern", "Stay consistent" and to test features, using controllers methods as a kind of schedule. So with Filament I feel myself a little bit confused: I love to have dashboard ready without losing time with styling, but sometimes I'm not pretty sure to have the control of what i'm doing, I feel like if I repeat code in many places, I don't find the same keystone that you give me with plain Laravel. Maybe should be intresting a series of code reviews about filament! I think that I get the best lessons from your code reviews
@gdogmalone29 күн бұрын
What’s doing your auto completion please? Is that standard or an AI? 10:56 (😂answered at 12 minutes!)
@vladislavkresta1321Ай бұрын
What if my whole CRUD si based on Livewire so I don't have any POST routes to create User model?
@LaravelDailyАй бұрын
In Livewire, tests are different, it's Livewire::test() from what I remember. So read the Livewire docs about testing.
@vladislavkresta1321Ай бұрын
@@LaravelDaily Great, looking forward it, thanks for your quick reply, appreciate it!
@gilney.mathiasАй бұрын
Now do this on a 10+ years old legacy project 😭
@LaravelDailyАй бұрын
Mission impossible.
@trap7369Ай бұрын
@@LaravelDaily 😂😂😂
@lyrihkaesaАй бұрын
Can you explain how to test laravel dusk + pest on select filament search.
@LaravelDailyАй бұрын
Haven't used that exact combination, so can't explain, sorry.