Тёмный

How to (Still) Use Bootstrap in Laravel 10? 

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

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

 

25 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 60   
@__byteWise01
@__byteWise01 Год назад
I honestly prefer to use this approach: 1. Install Laravel composer create-project laravel/laravel example-app 2. Use in project folder npm i bootstrap 3. Copy the css and js folders from the following locations -node_modules/bootstrap/dist/css -node_modules/bootstrap/dist/js 4. Paste the css and js folders into the public folder 5. Insert the links into the layout file
@dredev216
@dredev216 2 месяца назад
goated
@DeepStreamBits
@DeepStreamBits Год назад
I haven't found Tailwind compelling. I've seen dozens of articles and tutorials explaining the "benefits" but I just can't see them
@julienSibille
@julienSibille Год назад
I can't afford those 1km one liners of classes from utilities first inside my html. I keep my css separated with Bootstrap too !
@CODINGISEASY
@CODINGISEASY Год назад
@@julienSibille tailwind only works well if you put everything into its own components and then just reuse the components
@julienSibille
@julienSibille Год назад
@@CODINGISEASY Yeah, but this way i still prefer having clean component with just 1 class and the css logic separated ! But this is my own preference !
@CODINGISEASY
@CODINGISEASY Год назад
*Nice tutorial. I started to use tailwind but I find bootstrap much easier because I know it from memory*
@vincej151
@vincej151 Год назад
I use Bootstrap. I have looked at Tailwind, and for me, it is exceedingly verbose. I have no interest in having my site appear to be "unique". All I need is functionality. It does not solve any problem. Lastly Tailwind represents just more time learning. I can use that time more productively doing something else.
@coolcha
@coolcha Год назад
I still use Bootstrap. It is improving significantly, over the coming releases Bootstrap will be getting native Dark Mode support and ability to control themes which should help one of the major pain points of Bootstrap.
@innograp
@innograp Год назад
I tried tailwind before but bootstrap is still much easier to understand😊
@kamil19862307
@kamil19862307 Год назад
Thank you! I believe many people still use Bootstrap, including myself. Therefore, if you show on the project how you connect styles and js files from an already laid out site design, it will be great.
@LaravelDaily
@LaravelDaily Год назад
That's exactly what I'm showing in the article that I've demonstrated in the video, link in the description.
@emekatimothyiloba699
@emekatimothyiloba699 Год назад
Thank you sir. I personally still use bootstrap
@pjr
@pjr Год назад
I think your package "Larastarters" should've mentioned here because it is helpful to quickly scaffold some bootstrap admin themes.
@LaravelDaily
@LaravelDaily Год назад
Totally forgot!
@alfredo78morales
@alfredo78morales Год назад
For all my projects in Laravel I still use Bootstrap.
@holacuba2001
@holacuba2001 Год назад
Yes to Bootstrap! I don't like inline css.
@pileofsand8756
@pileofsand8756 Год назад
Bootstrap is still king for me.
@gt-nemachtillicomposer5478
@gt-nemachtillicomposer5478 Год назад
From the beginning, I started using Bootstrap, and even after years, I still use it. The difference now is that I compress or defragment the source code to only use the components that I need, instead of using everything. For example, the following video helped me do that: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-6onN1FC3__A.html.
@himak21
@himak21 Год назад
I still prefer Bootstrap. It has cleaner HTML, it's free and there are more components.
@prezire
@prezire Год назад
Been trying tailwind for months now. Don't like it. Switching back to BS5.
@MrSundaayy
@MrSundaayy Год назад
Sir, which better between @extends('layouts.app') and for templating?
@LaravelDaily
@LaravelDaily Год назад
It's a personal preference.
@andreajohn4520
@andreajohn4520 Год назад
In the older project, we don't need to run npm run dev but now it's necessary why is that so?
@LaravelDaily
@LaravelDaily Год назад
Because modern projects are using js/css libraries, it's like "composer install" which we also didn't need before composer.
@andreajohn4520
@andreajohn4520 Год назад
@@LaravelDaily Okay Gotcha! 😍
@jssmntll
@jssmntll Год назад
Hi Povilas, great content. Thanks for share the knowledge. Could you please make a video integrating backstrap theme with laravel.
@eloquent2200
@eloquent2200 Год назад
Thank you for your work!
@Nowayjose-z2r
@Nowayjose-z2r 7 месяцев назад
I would argue the beginning part stating tailwind is NOT part of laravel. While technically correct it is a waste of time. I wonder how many people fast-forwarded through that. It's about perception and 100% pushing towards tailwind. Otherwise there would be options like when installing Breeze (for example). So saying it's not included by default is fine, but who really uses the default outside of an api?
@shahzadawahed2579
@shahzadawahed2579 Год назад
Can I use bootstrap with laravel Jetstream or only laravel ui ?
@LaravelDaily
@LaravelDaily Год назад
Laravel UI is the official one. There was also unofficial one called Jetstrap: github.com/nascent-africa/jetstrap - but it seems to be abandoned, with last commit over a year ago
@LaravelDaily
@LaravelDaily Год назад
There's also our package Larastarters: github.com/LaravelDaily/Larastarters
@overholted
@overholted Год назад
If I have already installed Jetstream can I install Laravel UI with Bootstrap?
@QuantumBen
@QuantumBen Год назад
Good content always 😊
@julienSibille
@julienSibille Год назад
Still using it !
@hamidimomov232
@hamidimomov232 Год назад
I still use Bootstrap.
@TrikNgonlen
@TrikNgonlen Год назад
A W E S O M E !
@CodewithNababur
@CodewithNababur Год назад
Just run 3 lines of code in your terminal. Install bootstrap auth 1) composer require laravel/ui 2) php artisan ui bootstrap --auth 3) npm install 4) npm run dev
@emekatimothyiloba699
@emekatimothyiloba699 Год назад
What do you think about tailwind I’ve been using bootstrap for the past 5 years Will you advice that I learn tailwind just to get another option?
@dukeofnorfolk1842
@dukeofnorfolk1842 Год назад
Personally i wouldn't, it's literally an inline css but with classes
@LaravelDaily
@LaravelDaily Год назад
It's a personal preference. I personally try to learn things when I actually NEED them, not just for options.
@CODINGISEASY
@CODINGISEASY Год назад
I find tailwind better for apps where you create components. You build the components with the classes so then once you make a component you dont have to keep repeating all those classes. Like if you had a vue or blade component for a button you can build the button once with all the components then just include it and pass it the text and href each time. Then if you need to change the style you only need to edit your button component. If that makes sense?
@askadj
@askadj Год назад
I agree with anyone that states that it's a personal preference. Also tailwind css could be a project technical requirement. In this way learning it for you will be a necessity instead of just an option. Wich I've is better? That will always depend on who is implementing it
@Dennis-wf9qu
@Dennis-wf9qu Год назад
​@@dukeofnorfolk1842 That's not quite true. you wouldn't be able to make groups, hover states, animations etc. by doing inline styling
@zordmax
@zordmax Год назад
Bootstrap easy fast for MVP
@ahmedmikkawe
@ahmedmikkawe Год назад
I don't like tailwind but if I have to use it I will
@JosephTinsley
@JosephTinsley Год назад
I still use Bootstrap
@محمدابراهيم-ظ2ض
bootstrap & webpack (RIP)
@MasroorHaider-dk2ch
@MasroorHaider-dk2ch Год назад
LaravelDaily/Larastarters
Год назад
Still use it. Also still use jQuery with JSP. 😂
@samuraidenis
@samuraidenis Год назад
I prefer bootstrap
@gessegoncalves6493
@gessegoncalves6493 Год назад
After I discovered Tailwind I never looked at bostramp again
@shubhamsahuSD
@shubhamsahuSD Год назад
Tailwind ui element are nicer than bootstrap
@QueeeeenZ
@QueeeeenZ Год назад
I don't understand why would anyone want to use bootstrap in 2023 when we have react and Vue and component libraries and Tailwind
@dalandan8300
@dalandan8300 Год назад
I dont understand the bootstrap hate. Most of us dev use it where I work. Here is a dislike
@محمدابراهيم-ظ2ض
bootstrap & webpack (RIP)
@AntonioPopolizio
@AntonioPopolizio Год назад
I still use Bootstrap
Далее
Laravel Security: Top 7 Mistakes Developers Make
11:16
UI Libraries Are Dying, Here's Why
13:28
Просмотров 317 тыс.
UFC 308: Пресс-конференция
35:18
Просмотров 489 тыс.
So I've tried 3 popular Laravel CMSs...
17:53
Просмотров 8 тыс.
Refactor "Senior" PHP Code with Early Returns
12:09
Просмотров 27 тыс.
The Tools I Use to Build Products in Laravel
19:00
Просмотров 35 тыс.
Laravel CRUD in 50 minutes for Beginners  from Scratch
49:58
5 Things I Wish I Knew When Starting with Laravel
5:22
Laravel + Livewire todo app (and so much more)
16:41
Просмотров 48 тыс.
How the PROS Use Tailwind
9:55
Просмотров 53 тыс.
UFC 308: Пресс-конференция
35:18
Просмотров 489 тыс.