Laravel 11 in 11 hours - Laravel for Beginners Full Course

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 199

  • @TheCodeholic
    @TheCodeholic  Месяц назад +18

    Full Table of Contents
    ----------------------------------
    00:00:00 - Introduction
    00:07:16 - Prerequisites
    00:08:28 - Project Full Demo
    00:16:23 - The Importance of Deployment
    00:21:08 - Why You Should Learn Laravel?
    00:23:35 - Setup Working Environment
    00:27:36 - Create Laravel Project
    00:30:53 - Introduction to Artisan
    00:34:08 - Challenge
    00:35:32 - Directory Structure
    00:39:39 - Create your first page
    00:41:43 - Request Lifecycle
    00:43:31 - Configuration
    00:47:03 - Debugging Functions
    00:49:02 - Basics of Routing
    00:51:52 - Route Required Parameters
    00:54:44 - Route Optional Parameters
    00:56:42 - Route Parameter Validation
    01:00:07 - Route Parameter Regex
    01:03:56 - Named Routes
    01:06:37 - Named Routes with Parameters
    01:09:08 - Route Groups
    01:10:41 - Fallback Routes
    01:11:31 - View Registered Routes with Artisan
    01:13:12 - Route Caching
    01:13:51 - Challenge
    01:15:34 - Basics of Controllers
    01:18:21 - Group Routes by Controller
    01:19:48 - Single Action Controllers
    01:23:26 - Resource Controllers
    01:30:37 - Challenge
    01:34:39 - Create HomeController
    01:37:29 - Create and Render Views
    01:40:56 - Render View using View Facade
    01:43:21 - Pass Data to Views
    01:45:41 - Share Data Between all Views
    01:46:47 - Challenge
    01:50:22 - Using Functions in Blade Files
    01:52:04 - Display Unescaped Data
    01:53:29 - Blade and JavaScript Frameworks
    01:58:00 - Rendering JSON
    02:00:36 - What are Blade Directives
    02:01:45 - Blade Comments
    02:04:09 - Conditional Directives
    02:08:00 - Switch Directive
    02:08:35 - Loop Directives
    02:09:45 - Continue and Break in Loop
    02:11:11 - Loop Variable
    02:16:50 - Class and Style Directives
    02:20:23 - Including Sub Views
    02:23:40 - Conditionally Include Sub Views
    02:25:37 - Sub Views Inside Loop
    02:29:10 - Use Raw PHP in Blade
    02:30:18 - Challenge
    02:34:10 - Create Website Layout
    02:40:24 - Output Variables in Layout
    02:45:04 - Final Version of App Layout
    02:51:16 - Create Parent Layout
    03:00:14 - Create Signup Page
    03:06:29 - Create Login Page - Challenge
    03:10:22 - Directives-@section,@show,@parent
    03:14:14 - More on Directives
    03:17:43 - Introduction to Components
    03:22:57 - Component Slots
    03:28:50 - Class Based Components
    03:32:29 - Class Based Component Attributes
    03:35:28 - Anonymous Component Attributes
    03:41:48 - Additional Attributes on Components
    03:48:17 - Component Slot Attributes
    03:50:32 - Reserved Keywords in Components
    03:51:34 - Inline Components
    03:53:28 - Layouts using Components
    04:09:21 - Challenge - Refactor Signup Page
    04:10:52 - Challenge - Reusable Components
    04:14:03 - Challenge - Create GuestLayout
    04:24:01 - Challenge - CarItem Component
    04:27:35 - Cleanup Code from Views
    04:30:03 - Create CarController with Views
    04:40:50 - Update Links to Pages
    04:43:40 - Database Configuration
    04:47:39 - Explore Default Database
    04:51:24 - Explore Project’s Database schema
    04:56:27 - What are Migrations?
    04:57:20 - Migration File Structure
    04:59:38 - Explore Existing Migrations
    05:01:49 - Migrate Artisan Command
    05:05:52 - Add Column to users Table
    05:07:47 - Create car_types and fuel_types Tables
    05:10:47 - Running Migrations
    05:13:03 - Create More Tables
    05:17:14 - Create cars and car_features Tables
    05:26:02 - Rollback Migrations
    05:31:42 - Challenge - Create Remaining Tables
    05:35:12 - What is Eloquent ORM
    05:37:06 - Generate FuelType Model with Artisan
    05:39:29 - Eloquent Model Conventions
    05:46:33 - Generate Remaining ORM Models
    05:49:10 - Route Model Binding
    05:51:52 - Disable Timestamps
    05:53:22 - Prepate Data for Reading
    06:02:29 - Select Data using Eloquent - The Basics
    06:12:15 - Insert Data using Eloquent - The Basics
    06:15:03 - Insert Data - Using $fillable
    06:22:53 - Define $fillable on all Models
    06:25:04 - Change Primary Key for CarFeatures
    06:25:45 - Update Data - The Basics
    06:26:48 - Update or Create Car
    06:31:08 - Perform Mass Update
    06:33:33 - Delete Car - Delete a Single Record
    06:35:53 - Delete Car - Mass Delete
    06:38:45 - Rename CarImage Model
    06:40:37 - Challenges
    06:45:16 - Introduction to ORM Relationships
    06:46:53 - Define one-to-one Relationship
    06:52:11 - Working with one-to-one Relationship
    06:58:36 - One-to-many Relationships
    07:03:50 - Many-to-one Relationships
    07:10:42 - Many-to-many - Define Relationships
    07:16:32 - Many-to-many - Working with Data
    07:23:52 - Define Remaining Relationships
    07:30:51 - Introduction to Factories
    07:32:31 - Generate Factories
    07:34:39 - Factory Naming Convension
    07:37:17 - Use Factories to Generate Data
    07:41:35 - Factory Sequences
    07:44:27 - Factory States
    07:46:45 - Factory Callbacks
    07:47:57 - Factory Relationships - One to Many
    07:55:16 - Factory Relationships - Belongs To
    07:58:10 - Define All Factories
    08:13:06 - Factory Relationships - Many to Many
    08:16:27 - Introduction to Seeders
    08:17:36 - Create and Run Seeders
    08:21:04 - Create Seed Data for the Project
    08:41:24 - Render Cars on Home Page
    08:46:02 - Query Data - Different Methods
    08:50:51 - Render Cars on Search Page
    08:54:08 - Data Ordering
    08:56:02 - Output Content on Car Details Page
    09:13:16 - Output Content on My Cars Page
    09:22:29 - Watchlist Page
    09:31:52 - Eager Loading
    09:38:34 - Eager Loading on Home Page
    09:42:40 - Eager Loading on Other Pages
    09:45:07 - Database Joins
    09:54:02 - Basic Where Clauses
    09:56:36 - Additional Where Clauses
    10:02:11 - Multiple Where Grouping
    10:04:02 - Where Exists Clause
    10:06:02 - Subquery Where Clause
    10:08:53 - Query Debugging
    10:09:58 - Pagination Basics
    10:13:45 - Ways to Customize Pagination View
    10:17:15 - Customize Pagination View
    10:28:29 - Add Pagination on Other Pages
    10:33:18 - Using Simple Pagination
    10:36:31 - Customize Pagination URLs
    10:40:07 - Accessing the Request
    10:46:46 - Creating Response
    10:52:44 - Redirects
    10:55:02 - Outro

  • @sheko4515
    @sheko4515 Месяц назад +42

    He deserves 100k subscribers, I don't understand how he does not even have 200k subscribers, he is one of the best PHP tutors on RUclips.

    • @maxfrischdev
      @maxfrischdev Месяц назад

      He is not "clickbaity" enough 😅
      Serious, once in a while I find crazy good youtubers with real HIGH QUALITY videos/tutorials/etc and because they don't play "the youtube game" aggressively, they have a few thousand subscribers.
      I do hope thecodeholic's channel will continue to grow and get it's deserved views! ❤

    • @AGUNGKAYA
      @AGUNGKAYA Месяц назад

      Are you sure?

    • @MinhazTaher
      @MinhazTaher Месяц назад

      its true

  • @hassanaitjabli2002
    @hassanaitjabli2002 Месяц назад +11

    This Laravel 11 course is so good, it’s surprising it’s not getting the attention it deserves. It really covers everything you need, and more people should def be checking it out

  • @AH-cf9cv
    @AH-cf9cv Месяц назад +12

    I am 28 years old learning from scratch it's very helpful for me.Thanks

  • @maxponmar
    @maxponmar Месяц назад +5

    I've completed your prior free course Laravel 11 + React SPA, and I am grateful for the content. As a token of gratitude, I purchased this course, which I am confident will help me greatly in better understanding Laravel 11 and creating freelance projects.

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      Happy that it helped. 🙏 Thank you.

  • @psychodepth4636
    @psychodepth4636 Месяц назад +3

    this man deserve everything for being generous. more power to you bro. spread love

  • @edsaid2032
    @edsaid2032 Месяц назад +5

    You're a boss for looking after the community!

  • @douglascrowder
    @douglascrowder Месяц назад +1

    I am an hour in... and I love this video. Thanks for making it. Once I finish, I plan to buy the entire course from his website. It is very reasonably priced.

  • @faisal.fs1
    @faisal.fs1 Месяц назад +1

    Wow, what a generous gesture to offer these brand-new tutorials at no cost!
    Truly appreciate it!! 🎉

  • @NiagaraThistle
    @NiagaraThistle Месяц назад +1

    Your videos and tutorials are always AWESOME - and I've been doing PHP dev for 15 years. I always learn something from your tutorials.
    Found you from a collaboration with Brad Travesy a few years ago and very glad i did

  • @___Kevin
    @___Kevin 21 день назад

    Thank you. I'm currently building a Laravel app (as a beginner)!

  • @fermevc
    @fermevc Месяц назад +1

    Thank you so much for sharing your valuable knowledge and investing your time in creating free PHP and Laravel tutorials. Your efforts are truly appreciated! It's a shame that more people don't subscribe to your content, but please know that your work is making a positive impact.

  • @ArmenBablanyan-i5u
    @ArmenBablanyan-i5u 24 дня назад +1

    This is really good content about Laravel. I recommend it. Thank you

  • @njugunamwangi7023
    @njugunamwangi7023 Месяц назад

    You got me to start coding with laravel, forever grateful

  • @MasBagz
    @MasBagz 29 дней назад +1

    Thank you so much ..i,m a new programmer

  • @Gayashan4lk
    @Gayashan4lk Месяц назад +1

    I highly appreciate your effort. ❤ I'll definitely try this tutorial.

  • @tabimansour
    @tabimansour Месяц назад +1

    Amazing Laravel 11 course, one of the best

  • @hab_tech
    @hab_tech Месяц назад +1

    11 hours for Laravel 11? That’s really impressive! I’m sure the Laravel community would appreciate your dedication. Your dedication to Laravel and the content you’re creating is impressive! However, I’ve noticed that there hasn’t been much buzz around your channel yet. It might be a good idea to engage more with the Laravel community and let them know about your work. By connecting with them, you could draw more subscribers to your channel. I think they would really appreciate and benefit from your content!

    • @TheCodeholic
      @TheCodeholic  Месяц назад +1

      Thank you. I am just trying to create great videos. Then other will find my channel.

  • @Rick-bb4xv
    @Rick-bb4xv 8 дней назад +1

    tysm this helps me alot

  • @Ahmet_Altun
    @Ahmet_Altun Месяц назад +1

    Teşekkürler Zura. Seni tekrar görmek çok güzel.

  • @arewatechguy
    @arewatechguy Месяц назад +1

    Thank you, sir, you really help us. If I learn, I will help others also.

  • @faheem08
    @faheem08 Месяц назад +1

    Thank you so much ❤
    You are the best and i love your explanation 👏

  • @JeanPaulMarquez
    @JeanPaulMarquez Месяц назад +1

    Many, many thanks for this. Very much appreciated.

  • @soumyadev2681
    @soumyadev2681 Месяц назад +1

    Thanks a lot! Best PHP tutorials 👍

  • @stevenphiri6457
    @stevenphiri6457 Месяц назад

    I have dedicated this as my go-to laravel course

  • @andreavocaturo3448
    @andreavocaturo3448 Месяц назад

    Thank you for your amazing work and kindness!

  • @jamesmiths72
    @jamesmiths72 Месяц назад +1

    Thank you very much!!!

  • @muhdbasiirzulkifle5090
    @muhdbasiirzulkifle5090 Месяц назад +1

    Thank you for the awesome content!

  • @BenedictSebastian-tt9vd
    @BenedictSebastian-tt9vd Месяц назад +1

    I was already subscribed. Wish I wasn't so I could do it again.Thank you very much sir.

  • @acirfa
    @acirfa Месяц назад +1

    a nice comment for ya. a great course from a great man. hoping for your success and i really the the your approach to increase watch time

  • @afrazhussain3778
    @afrazhussain3778 Месяц назад +1

    Thank you sir it will help us a lot ❤

  • @kirayagami9229
    @kirayagami9229 Месяц назад

    kudos!! very informative. Thank you very much for this wonderful tutorial

  • @MrColins710
    @MrColins710 Месяц назад

    Thank you, great job!

  • @ahmedrazashibli8743
    @ahmedrazashibli8743 Месяц назад +2

    Bro i was waiting for this. Thanks a lot. May god bless you

  • @isaacadam255
    @isaacadam255 Месяц назад

    My GOAT, very informative tutorial. Thank you sir

  • @mohamedassilkirouani8615
    @mohamedassilkirouani8615 Месяц назад

    the best tuto in youtube keeep going bro

  • @sharjeeljan
    @sharjeeljan Месяц назад

    Very cool video! Thanks for all your efforts!

  • @robertjota
    @robertjota Месяц назад

    Amazing, tanks your are the best!!

  • @AhmedBelal-zc7hw
    @AhmedBelal-zc7hw 21 день назад

    great work !

  • @aliraza6374.
    @aliraza6374. Месяц назад

    Thank you so much for this course 💯👍🏻🤗🤗

  • @vugarkhalil
    @vugarkhalil Месяц назад +1

    Respect ❤

  • @DevAfangideh
    @DevAfangideh 28 дней назад

    the best teacher

  • @HugoRamirez-ke6uo
    @HugoRamirez-ke6uo Месяц назад

    Thanks a lot. Excelent !!

  • @topchan4014
    @topchan4014 Месяц назад

    Legend Thank You!!!

  • @not-me45288
    @not-me45288 Месяц назад

    Well done sir.

  • @Tux256ND
    @Tux256ND Месяц назад

    Thank you very much, buddy! s2

  • @zahidurrehman431
    @zahidurrehman431 12 дней назад

    Great Sir

  • @normangeek8201
    @normangeek8201 Месяц назад

    Thank you so much. I am following

  • @MinhazTaher
    @MinhazTaher Месяц назад

    simply awesome 🎉🎉🎉❤❤❤

  • @zahidurrehman431
    @zahidurrehman431 12 дней назад

    Very helpful

  • @jimmyjavierjs
    @jimmyjavierjs Месяц назад

    Awesome content as always

  • @sakthisaravanan9304
    @sakthisaravanan9304 Месяц назад

    Thank you so much

  • @RafeyShaikh-ci7fw
    @RafeyShaikh-ci7fw Месяц назад

    Wellcome Back Sir 🎆🎆

  • @tahmidnewaz3082
    @tahmidnewaz3082 Месяц назад +1

    Thank you

  • @PinasPiliNa999
    @PinasPiliNa999 10 часов назад

    Hope you can do a Laravel Tutorial for Inventory Management or ERP , a Point of Sale using Laravel

  • @azatagamyradov2285
    @azatagamyradov2285 Месяц назад

    Appreciate so much)

  • @alalyrealestate1136
    @alalyrealestate1136 Месяц назад

    great job bro

  • @unknownunknown8573
    @unknownunknown8573 Месяц назад

    Thank you!

  • @SyafiqAbdul
    @SyafiqAbdul Месяц назад +1

    thank you sir

  • @techtalkraza
    @techtalkraza Месяц назад

    thanks sir love for you by bottom of heart

  • @abelmarkos5753
    @abelmarkos5753 Месяц назад

    Very nice Ezra

  • @houdaifa6319
    @houdaifa6319 Месяц назад

    Thanks 🤲🤲

  • @sajilocoding8690
    @sajilocoding8690 Месяц назад

    I was waiting for this ❤❤❤ lot's of love sor

  • @salihmohmmed9846
    @salihmohmmed9846 Месяц назад

    I don't know how to thank u❤❤❤

  • @aogunnaike
    @aogunnaike Месяц назад

    Wow ❤❤❤ thanks for this

  • @AbdoulSabourSAMA
    @AbdoulSabourSAMA Месяц назад

    Good lesson

  • @Saboor-Hamedi
    @Saboor-Hamedi Месяц назад

    This is crazy video bro 🤜

  • @SirEdges_Adejo
    @SirEdges_Adejo Месяц назад +1

    I normally just click the like button before watching. Your courses are always gold. Your courses are worth any amount you charge.
    I Will share your links on Facebook and Twitter 👍

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      Thanks a lot. Sharing is what might help to reach 100K by the end of the year.

  • @fahimhassan4387
    @fahimhassan4387 Месяц назад

    Thnx

  • @ArpitMishra-q9y
    @ArpitMishra-q9y 7 дней назад +1

    LET'S GO

  • @binaryfire
    @binaryfire Месяц назад

    Great video Zura. Any plans to do Livewire content?

  • @ayush-l1f8s
    @ayush-l1f8s День назад +1

    Bro that the right number great one hour passed and i did not feel it

    • @TheCodeholic
      @TheCodeholic  День назад

      So nice to read that. I tried my best to make entire 24 hours to be like that

  • @TigGas31
    @TigGas31 Месяц назад

    Thanks

  • @daresamiuel
    @daresamiuel Месяц назад

    Awesome 🎉🎉🎉

  • @sidds09
    @sidds09 Месяц назад

    great.. thank you. why don't you make PHP tutorial. just enough to start with Laravel.

  • @OmarRiyati
    @OmarRiyati Месяц назад

    very nice and useful course. Is the course cover and explain the project full demo (cars)?

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      This is first 11 hours of the course. Including cover, demo and way more

    • @OmarRiyati
      @OmarRiyati Месяц назад

      @@TheCodeholic how I can complete the project from demo to finish?

  • @nerminsky1039
    @nerminsky1039 Месяц назад +1

    complimenti good boy

  • @Neironlog
    @Neironlog 22 дня назад

    Do you have the same course only broken in parts? Just if I got into parts so I can use the translator. Thanks

  • @ezzat_za
    @ezzat_za Месяц назад +1

    Thank you so much for this tutorial, but i have a question, is Laravel still worth to learn?
    and i hope you post a video to explain OOP in PHP

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      Recently Laravel raised $57m investment, so I think yes, this is the perfect time of starting Laravel. It will grow soon.
      laravel-news.com/laravel-raises-57-million-series-a

  • @VusalNovruzov-v3x
    @VusalNovruzov-v3x Месяц назад

    ზურა ჩემი რჩევა იქნება, რომ ხელოვნური ინტელექტი ჩააშენო ლარაველ აპლიკაციებში და გადაიღო ეგეთი კურსები. დღეს ხელოვნური ინტელექტია ძალიან ტრენდული და თითქმის არ არსებობს იუთუბერი, რომელიც ლარაველით აკეთებდეს მსგავს აპლიკაციას. უმრავლესოა ასეთი აპლიკაციები NextJs-ით იწერება. მე ვფიქრობ, რომ ლარაველს უფრო მეტი პოტენციალი აქვს ვიდრე ამ უკანასკნელს.

  • @namtrungoriginal3348
    @namtrungoriginal3348 Месяц назад

    I haven't looked at the entire hocjm course yet but can you tell me which database do you use, my sql or sql sever?

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      We use Eloquent ORM and every operation to the database is Database agnostic operation. Which means you can use any database you want.
      If fact we used Sqlite during local development, but when we deployed on production we used MySql and everything worked fine.

  • @emancute888
    @emancute888 Месяц назад

    nice

  • @deadlinedis1949
    @deadlinedis1949 Месяц назад

    please make a video for APIs

  • @ranostaj-dev
    @ranostaj-dev Месяц назад

    Hey, just qq: what software you are using for screen recording? thnx

  • @_nirajghimire
    @_nirajghimire Месяц назад

    Laravel React multivendor ecommerce with Super Admin panel please ... where superadmin can verify activate and deactivate vendor. and please consider robust api backend development course for your upcoming premium course with best practices like repositories / services/ DDD etc.

  • @sandrinerodriguez9425
    @sandrinerodriguez9425 Месяц назад

    hello, I found the promotional coupon but when I want to buy the course and I apply the coupon, it says "Invalid coupon". Doesn't it work anymore? THANKS

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      No unfortunately other students found the coupon much earlier. Sorry.
      Try to be the first one in the next video

    • @sandrinerodriguez9425
      @sandrinerodriguez9425 Месяц назад

      No problems zura. Thank you for your course which is great and for your investment in making it happen. I'll buy it even without the coupon. 😀

  • @gamesPartizan
    @gamesPartizan 25 дней назад

    Hello thecodeholic plateform is actually down ;) thanks you

    • @TheCodeholic
      @TheCodeholic  25 дней назад

      I have written to Teachable support. I hope they fix it soon

  • @IfechukwuFavor
    @IfechukwuFavor 7 дней назад

    @codeholic am a newbie in Laravel, please can you guide me on how to start ?

    • @TheCodeholic
      @TheCodeholic  7 дней назад

      Learn basics of PHP and basics of OOP and start with Laravel

  • @amine_5647
    @amine_5647 7 дней назад

    is there a free option to deploy my Laravel Api?

  • @constantine9074
    @constantine9074 Месяц назад

    Nice comment

  • @junaidwaqas6448
    @junaidwaqas6448 Месяц назад

    kindly make laravel and next js course

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      I have it in my roadmap, but can't say exactly when

  • @dailydreadinspirations
    @dailydreadinspirations Месяц назад

    Great

  • @adeosunadeyanju1549
    @adeosunadeyanju1549 Месяц назад

    can you pls combine with Inertia(react) for the views instead of blade

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      I have a full project on that topic.

  • @ahmadaboamsha4834
    @ahmadaboamsha4834 15 дней назад

    Thank you Zura it will help us a lot ❤
    I have one question why i can't get the html/css template i entered my email and nothing send to me can you help me ?
    now i am stuck on this 😢

    • @TheCodeholic
      @TheCodeholic  15 дней назад

      Ok I will check it. Please send me a private email on this.
      Did u check spam?

    • @ahmadaboamsha4834
      @ahmadaboamsha4834 15 дней назад

      @@TheCodeholic ok sir i send you an email

  • @miladGh_
    @miladGh_ 19 дней назад

    Hello, I can't download the Template of project, I didn't get any email of your page

    • @TheCodeholic
      @TheCodeholic  19 дней назад

      Did you check spam folder also?

    • @miladGh_
      @miladGh_ 19 дней назад

      @TheCodeholic yes of course

    • @TheCodeholic
      @TheCodeholic  19 дней назад

      I tried it multiple times and it works normally. Can you please try now?

    • @miladGh_
      @miladGh_ 19 дней назад +1

      ​@@TheCodeholicThank you, it is ok👍🙏🙏

  • @dimasgilang2781
    @dimasgilang2781 Месяц назад

    lets goooooo

    • @dimasgilang2781
      @dimasgilang2781 Месяц назад

      i will recomend your channel to my classmate

  • @mahmoudmagdy2779
    @mahmoudmagdy2779 16 дней назад

    Is this project complete in this video or do I have to subscribe for the rest of the project
    ???
    ?

    • @TheCodeholic
      @TheCodeholic  16 дней назад +1

      It is only first 11 hours. The entire course is 24 hours

    • @mahmoudmagdy2779
      @mahmoudmagdy2779 16 дней назад

      @@TheCodeholic Are there 100% discount coupons for students who are unable to pay?

  • @Mohamedelshazly-iz5qr
    @Mohamedelshazly-iz5qr Месяц назад

    i can't Download Car Selling Website HTML/CSS Frontend Template there is any active link

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      Did you find the link in the description? You should enter your email address and you will receive a download link

    • @KarthikMohan-23
      @KarthikMohan-23 Месяц назад

      @@TheCodeholic We are not able to access that site

    • @TheCodeholic
      @TheCodeholic  Месяц назад

      Strange! It works fin for me.
      Can you provide a screenshot or the error you see?

  • @quthstechnologykoji3102
    @quthstechnologykoji3102 Месяц назад

    ❤❤❤

  • @rohithn-76
    @rohithn-76 Месяц назад