Тёмный

Live-Coding: Small Laravel Project in 7 Minutes 

Laravel Daily
Подписаться 144 тыс.
Просмотров 23 тыс.
50% 1

I've been shooting a lot of demo projects on this channel, and this time I want to take you "behind the scenes" of how I create those boilerplate demos pretty quickly. Create the structure, generate fake data, and install some typical design - all of that in 7 minutes.
- - - - -
Support the channel by checking out our products:
- Enroll in my Laravel courses: laraveldaily.t...
- Try our Laravel QuickAdminPanel: bit.ly/quickad...
- Purchase my Livewire Kit: livewirekit.com
- View Laravel Code Examples: laravelexample...
- Subscribe to my weekly newsletter: bit.ly/laravel-...

Хобби

Опубликовано:

 

18 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 48   
@jeffbee6090
@jeffbee6090 3 года назад
YES! These small complete, tiny, FAST projects are like comparable to a child practicing musical scales.... I can repeat them over and over and learn key concepts quickly and thoroughly as well as the associative memory of the concepts. Please do more!
@geneartista9714
@geneartista9714 3 года назад
Weird world, why does this man does not have the total number of subscribers he should deserve, you're so awesome man.
@takeshiwan
@takeshiwan Год назад
I came by for checking how things work in php compared to Rails. And I delightfully discovered I should be catching up pretty fluently. Great presentation!
@charninja5614
@charninja5614 3 года назад
as usual, simple yet powerfull... Learn a lot from your tutorial sir...
@bmtamim7818
@bmtamim7818 3 года назад
Just waiting for your video sir, My day started with your video💓💓💓❤️
@aviwemusa6109
@aviwemusa6109 3 года назад
Laravel api + Flutter Live-Coding: Small Project would be nice.
@LaravelDaily
@LaravelDaily 3 года назад
It is in plans, as a course, in September on my Teachable platform
@MuhammadKamran-lj2dd
@MuhammadKamran-lj2dd 3 года назад
Thank you sir... You are too good.... Thank you for daily videos. ❤️
@AabaBeel
@AabaBeel Год назад
GREAT VIDEO..... your NEW subscriber from PAKISTAN 💚
@cutiex7357
@cutiex7357 3 года назад
Wooww hahaha so fast! I love it!
3 года назад
Excelente. Muito obrigado.
@dev_jeongdaeri
@dev_jeongdaeri 3 года назад
Awesome!
@RuturajPatki
@RuturajPatki 11 месяцев назад
Great. Do you have a video on integration of Adminlte? Please make one if you don't have it yet.
@LaravelDaily
@LaravelDaily 11 месяцев назад
I have one from 4 years ago, not sure if it's still working: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Vh-PhdMmyoo.html
@sanaeareina5371
@sanaeareina5371 Год назад
i got a problem: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'products.products' doesn't exist and i did all steps i dont know what's the problem
@ami_2922
@ami_2922 7 месяцев назад
I'm a beginner in Laravel and I have come across with your tutorial. It's a great video and it's been helpful. But I got this error while running npm install && npm run dev. : At line:1 char:13 + npm install && npm run dev + ~~ The token '&&' is not a valid statement separator in this version. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : InvalidEndOfLine Can I ask for any suggestions and recommendations, please. Thank you!
@mohammadkhazaee9730
@mohammadkhazaee9730 3 года назад
So fun thanks
@sefaiyi
@sefaiyi 3 года назад
You are my best friend bro 😎 perfect 👍
@rdvr
@rdvr 3 года назад
Thanks again! Question: what is the benefit of storing the price as an integer instead of a decimal?
@robertstefanic4001
@robertstefanic4001 3 года назад
It's to avoid rounding errors. It's recommended that you store money values in the lowest denominator of that currency. It also helps with compatibility with other APIs since it's a standard (for example, Stripe stores money in integer format).
@samiullah0011
@samiullah0011 3 года назад
Hy Daily can you please make a video for project structure you used for creating project. Like what pattern you use. Like service classes ,controllerc, models etc.
@LaravelDaily
@LaravelDaily 3 года назад
I have a lot of videos on those topics, there's no ONE pattern, it depends on the project. Search the channel for "services" or "structure" or similar topics. Also, I have a course: laraveldaily.teachable.com/p/how-to-structure-laravel-project
@insidecampustv
@insidecampustv 3 года назад
recommend the best admin themes for laravel
@manuelben98
@manuelben98 3 года назад
I didn't catch how do you set up the .test domain automatically, how did you got it?
@LaravelDaily
@LaravelDaily 3 года назад
It's done by Laravel valet automatically.
@kingstalker
@kingstalker 3 года назад
When is best to use put instead of patch
@LaravelDaily
@LaravelDaily 3 года назад
They are the same, it's personal preference
@marcelrozendaal776
@marcelrozendaal776 3 года назад
Why i get Class 'Database\Seeders\Category' not found on a fresh Laravel 8 project, my composer.json look ok public function run() 15▕ { ➜ 16▕ Category::factory(10)->create(); 17▕ }
@LaravelDaily
@LaravelDaily 3 года назад
Add use App\Models\Category; Phpstorm did it automatically for me
@marcelrozendaal776
@marcelrozendaal776 3 года назад
@@LaravelDaily off course what stupid of me, i just changed from Phpstorm to Visual and did not even think about it...
@mahsintheeducator
@mahsintheeducator 8 месяцев назад
A requisition system with an inventory management system for a BANK: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Mmai3SfFawE.html
@thelostrider1
@thelostrider1 3 года назад
Hey Mr. Povilas! I saw your video "Laravel: Separate Admin/User Areas" but I'm still having doubts on how to separate Sub-Folders in Controller. For example, if I have Products and both User and Admin can see the "regular layout" showing the products, but only the Admin can see the table layout where you can Add/Delete products. Would that be all in ProductController? But the problem is, if all is in the same Controller how could I separate the controller in sub-folder (Admin and User || Admin, Moderator, User) without duplicating code? Would I separate in sub-folders the same Controller and repeat the method where I query for the "regular layout" in both Contollers?
@denisqatipi221
@denisqatipi221 3 года назад
You can use Policies for that. Search the laravel docs.
@thelostrider1
@thelostrider1 3 года назад
@@denisqatipi221 Isn't Policies similar to Roles/Permissions? My doubt isn't related to what a user can or can't do...
@LaravelDaily
@LaravelDaily 3 года назад
It is in the same Controller, but separate methods or areas are restricted by roles/permissions, watch my video: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-kZOgH3-0Bko.html
@thelostrider1
@thelostrider1 3 года назад
@@LaravelDaily Thanks, that video is very informative!! It's difficult to decide wether I should separate in sub-folders (Admin, User) or use Gates or Policies. But for what I understood in the video, the most common thing in big projects is doing Policies and not separate in sub-folders. Thanks!
@bmtamim7818
@bmtamim7818 3 года назад
Hello sir, How can I update foreignId column without deleting the migration? $table->foreignId('order_id')->constrained('orders', 'id')->onDelete('cascade'); to $table->foreignId('order_id')->nullable()->constrained('orders', 'id')->onDelete('SET NULL');
@LaravelDaily
@LaravelDaily 3 года назад
Will shoot a video about it in a few days.
@bmtamim7818
@bmtamim7818 3 года назад
@@LaravelDaily You really deserve, ❤️
@davidibrahim874
@davidibrahim874 3 года назад
Having a hard time figuring out what you typed in the product and category seeder (... Parameters :10). It's giving me errors. I'm a newbie. Thank you
@LaravelDaily
@LaravelDaily 3 года назад
Word "Parameters" is not the code, it's a helper from phpstorm
@davidibrahim874
@davidibrahim874 3 года назад
@@LaravelDaily thank you sir
@AbbasMomeny
@AbbasMomeny 3 года назад
what about solid principle?
@LaravelDaily
@LaravelDaily 3 года назад
I was talking about SOLID principles in my course here: laraveldaily.teachable.com/courses/how-to-structure-laravel-project/lectures/8760334
Далее
Laravel Mini CRM for Beginners in 1 Hour: Step-by-Step
1:12:57
🧙‍♀️☃️💥 #ice #icequeen #winter
00:14
Просмотров 61 тыс.
Laravel: Change Two Symbols to Boost Eloquent Speed
6:34
Laravel Migration: Change Foreign Key to Nullable
6:05
4 Packages You Need in ANY Laravel Project
8:14
Просмотров 61 тыс.
Eloquent Soft Deletes: Things You May Not Know
10:57
Просмотров 21 тыс.
Laravel Checkout: Database Transactions and Validation
16:24
12 Laravel/PHP Tips in 8 Minutes: August 2024
8:36
Просмотров 6 тыс.
Первый покупатель iPhone 16 Pro
0:59
8 сентября 2024 г.
0:29
Просмотров 4 млн