Laravel 10 Blog with Filament Admin Panel | Part 1

Поділитися
Вставка
  • Опубліковано 3 жов 2024

КОМЕНТАРІ • 281

  • @TheCodeholic
    @TheCodeholic  Рік тому +4

    To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/TheCodeholic/. The first 200 of you will get 20% off Brilliant’s annual premium subscription.

  • @wtfdoiputhere
    @wtfdoiputhere 29 днів тому +1

    this look like so much fun to play around with on my next project

  • @Alex-kv8zy
    @Alex-kv8zy Рік тому +4

    the seo meta title and description is a great feature thank you for covering everything best laravel blog project on youtube for sure!!

  • @CyberAutomate
    @CyberAutomate Рік тому +4

    Excellent content. I sat through all 3hrs over a few days. I love your delivery, I love how you don't edit out the troubleshooting portions and explain what you're doing and why you're doing it as you go. I followed along and even made the code work exactly as you have. Well Done SIR!!👏

  • @michaburdziak1181
    @michaburdziak1181 Рік тому +1

    Thank You #thecodeholic I am about to start a new project with Laravel 10 and Filament, and have no idea about Filament so this video is just perfect for me.

  • @rafaelcardosotrentin7644
    @rafaelcardosotrentin7644 Рік тому +2

    Thank you, friend! All the best!

  • @basilistigris640
    @basilistigris640 Рік тому

    the most advance and real world Laravel 10 Blog with Filament Admin Panel in yourube, thank you The Codeholic, can wait for more Laravel 10 projects and please make videos for new version of livewire 3

  • @kenmutesh4265
    @kenmutesh4265 Рік тому +1

    finally am here now to advance more after survey project #TheCodeholic hoping for more. Big up

  • @robinsedeqi2535
    @robinsedeqi2535 Рік тому +1

    Waiting, I laughed about 30 mins in the last part of your your react laravel Survey app. In the last part while deploying the project to the host server you got forced to change date and time and it was like really fun 😄 Sometimes computers drives us crazy by not working in our desired way
    Anyways thank you for the videos

    • @TheCodeholic
      @TheCodeholic  Рік тому

      😅 Exactly. I was not able to deploy because my computer date was not correct. Funny and annoying... 😀

  • @valeraaligator999
    @valeraaligator999 Рік тому +1

    Omg! I cant wait for part2! wery big thank to you. Zura!!!

  • @AJayAJay-gh1wr
    @AJayAJay-gh1wr Рік тому

    At ~ min 49:25 you reminded me to like the video if I haven't with a bit of guilt I've pushed the like button, good call!

  • @letm0uin
    @letm0uin Рік тому +2

    Now that I found your channel, I cant stop watching your content! awesome video! I came across this as I was researching rapid development with laravel and filament. I decided to try this package out and had my mind blown on how easy it is to set up initial CRUD pages! thanks for sharing! #thecodeholic has gainned another loyal subscriber!

  • @ВладиславАн-л3х
    @ВладиславАн-л3х Рік тому +1

    improving my listening eng skill by learning blog-building in Laravel. Thanks for such a detailed explanation, u re the best #thecodeholic.

  • @EyadJafar
    @EyadJafar Рік тому +1

    This is awesome video! I dont really understand Filament PHP yet, but I understood how great system it is. Thanks #thecodeholic always!

  • @KhaldounSenjab
    @KhaldounSenjab Рік тому

    Perfect course that I was waiting for. Please add many-to-many TAGS feature for posts. Thank you

  • @josuenlandu8907
    @josuenlandu8907 5 місяців тому +1

    @TheCodeholic. Thank you very much.

  • @tafadzwamukwepa4517
    @tafadzwamukwepa4517 9 місяців тому +1

    Great lessons here man. You got yourself a subscriber. Cheers.

  • @AlinaFoxDetox
    @AlinaFoxDetox 11 місяців тому +1

    For output categories in siedebar without unpublished posts you need another one join with posts and where statement with active = true

    • @NoelDev-2023
      @NoelDev-2023 11 місяців тому

      ->join('posts', function (JoinClause $join) {
      $join->on('category_post.post_id', '=', 'posts.id')
      ->where('posts.active', '=', true);
      })
      ( don't forget to add: use Illuminate\Database\Query\JoinClause; )

  • @Alex-kv8zy
    @Alex-kv8zy Рік тому +1

    great content ready for part two!!

  • @umersaeed259
    @umersaeed259 Рік тому

    #thecodeholic is the best content creator related to PHP Laravel I have ever experienced. You are AWESOME!!!

  • @artnation6612
    @artnation6612 7 місяців тому +1

    Many thanks for this tutorial

  • @petermwangi7274
    @petermwangi7274 Рік тому

    Great starter to my filament journey. Just precise content. I sat the 3hrs in a single sitting. Thanks #thecodeholic

  • @vusumzimaya5978
    @vusumzimaya5978 Рік тому +1

    I am a beginner in laravel, but Im learning a lot in this channet, thanks mate #thecodeholic

  • @domjag7911
    @domjag7911 Рік тому +4

    Having problems with setting slug using the closure class in the CategoryResource as you have it in your code - get the following error:
    Argument #1 ($set) must be of type Closure, Filament\Forms\Set
    This error comes up when using this code to set the slug from the title:
    ->reactive()
    ->afterStateUpdated(function (Closure $set, $state) {
    $set('slug', Str::slug($state));
    }),
    Had to use this code to fix - this is Filament version 3.x ()also need to import the Set Class.
    ->live()
    ->afterStateUpdated(fn (Set $set, ?string $state) => $set('slug', Str::slug($state)))

    • @carlogustavovalenzuelazepe5774
      @carlogustavovalenzuelazepe5774 Рік тому +2

      please pin this comment

    • @carlogustavovalenzuelazepe5774
      @carlogustavovalenzuelazepe5774 Рік тому +2

      if someone doesn't know which class to import this is it
      use Filament\Forms\Set;

    • @AlexMNet
      @AlexMNet 9 місяців тому

      This is great! Also... typing in the input field was glitchy for me unless I used onBlur or added debounce with a short delay. live(onBlur: true) or live(debounce: 500)

  • @abbasmohamedwalaal5753
    @abbasmohamedwalaal5753 Рік тому +2

    This youtube channel is gold for php lovers . In my country Somalia most web projects is done by php ... thank you #thecodeholic for creating this amazing tutorial

    • @edwardelrics2138
      @edwardelrics2138 Рік тому

      i've though peoples on your country are always set sail to find the One Piece :)
      j/k : i really apreciate your effort for chasing the knowledge , hope your project will be finish successfully.

    • @abbasmohamedwalaal5753
      @abbasmohamedwalaal5753 Рік тому

      @@edwardelrics2138 i didn't win the project

  • @reelsergealain
    @reelsergealain Рік тому

    Hi honestly, you explain so well I want to switch to Laravel, thank you for helping us, I'm French but I can follow your tutorials without the sound and I understand very well, please can you make a new playlist basic training on Laravel 10 update, thank you very much

  • @robertocannella1881
    @robertocannella1881 Рік тому +2

    Hey. Nice channel! Looking forward to this.

    • @robertocannella1881
      @robertocannella1881 Рік тому

      Wow! I'm just wrapping my head around Laravel. I've been really enjoying your videos! #thecodeholic

  • @GJROBOTICS
    @GJROBOTICS Рік тому +1

    #thecodeholic . The best laravel project developer. good luck.

  • @htk0002
    @htk0002 Рік тому +1

    Really like the new background and camera quality. Keep it up 💪🏻. #thecodeholic

  • @jepeto913
    @jepeto913 Рік тому

    Thank you Zura for such useful Laravel Filament tutorial 👍 🇬🇪😎

  • @ivanbarta2821
    @ivanbarta2821 Рік тому +1

    Great 👍 Just searching for some good admin panel

  • @RyuBateson218
    @RyuBateson218 Рік тому +1

    Love this channel!

  • @unkownsiner
    @unkownsiner Рік тому +1

    Fantastic video!!! Just what I was looking for as I'm a beginner to Laravel and PHP and your videos have been extremely helpful and informative keep it up brother!!!!! #thecodeholic

  • @FethiKebbas
    @FethiKebbas Рік тому +2

    the best channel to learn coding #thecodeholic

  • @DeniZZZNET
    @DeniZZZNET 11 місяців тому

    Thank you! Amazing video! Very helpfully and usefully! Do not stop! ))

  • @actu-soft
    @actu-soft Рік тому +1

    hi zura although i'm late but i'm still trying because i owe a lot to your channel and it's thanks to it that i managed to create something concrete with laravel.
    Thank you #thecodeholic

  • @mexantos
    @mexantos Рік тому +1

    There are some fellas out there that not using English as their primary language. If you don't mind, I wanna request you to make Laravel or something using Internationalization/Localization. This thing lack of tutorials for PHP MVC on the internet. It would be nice if you can provide for us, may be some on the internet libraries, but they are outdated and most of them didn't implement best practices, good luck and thanks in advance.

  • @nordicnomad5473
    @nordicnomad5473 Рік тому +1

    Thanks for the video. Wishes

  • @nikoalhudayusuf2618
    @nikoalhudayusuf2618 Рік тому +2

    I will wait for part 2 #thecodeholic

  • @jamesanuncio2773
    @jamesanuncio2773 Рік тому +1

    Excited to learn laravel!!
    #thecodeholic

  • @robinskills
    @robinskills Рік тому

    I am really excited to see what you are going to teach this time Zura about the recent version of laravel. I cannot wait to see the changes and the improvements of the infamous framework and see you how you'll integrated with Docker and Tailwind. TALL(Tailwind Alpine Livewire Laravel) for life!

  • @vardanmanukyan5343
    @vardanmanukyan5343 Рік тому +1

    2:28:45 I think we can add another join for getting count with only active posts like this
    ->join('posts', function($join) {
    $join->on('category_post.post_id', '=', 'posts.id')
    ->where('posts.active', '=', true);
    })

  • @ulijibkadelm318
    @ulijibkadelm318 Рік тому +1

    Learning code + learning english, thanks for the content! #thecodeholic

  • @abkdevs
    @abkdevs Рік тому +1

    I loved your video brother, thank you so much ^__^

  • @pnezerwa
    @pnezerwa Рік тому

    Can't wait for this 🤗
    Sir, I hope you won't forget to add roles, recent or recommend articles and search.
    Much love ❤️

    • @TheCodeholic
      @TheCodeholic  Рік тому

      Unfortunately they are not included in this part, maybe in the next part.

    • @pnezerwa
      @pnezerwa Рік тому +1

      @@TheCodeholic I got it. It's ok in next part.

  • @abirbd369
    @abirbd369 Рік тому +1

    Amazing ! I have subscribed and I am looking forward to watch every Laravel related content. Thanks #thecodeholic for time and effort.

  • @azad_agi
    @azad_agi Рік тому +1

    Thank you so much

  • @ayoublou443
    @ayoublou443 Рік тому +1

    I waited For This Video the hole day , it was very good video #thecodeholic

  • @SickOfMetal
    @SickOfMetal Рік тому +1

    Wow thank you man!

  • @JoolChannel
    @JoolChannel 7 місяців тому

    Great tutorial as usual 🎉 Thanks a lot #thecodeholic 🙏

  • @kcseforecast7580
    @kcseforecast7580 Рік тому

    Waiting patiently

  • @jamars434
    @jamars434 Рік тому +1

    Very informative about the filament on how to use it in actual project with client side, Thank you and keep up the good work. #thecodeholic

    • @TheCodeholic
      @TheCodeholic  Рік тому

      You can been chosen as a winner of Laravel E-commerce course giveaway. Can you please provide your email address here in comments?

    • @jamars434
      @jamars434 Рік тому

      Hello, thank you for chosing me.

    • @TheCodeholic
      @TheCodeholic  Рік тому

      @@jamars434 Welcome! But can register on the website and write your email address here so that I can give you an access?

  • @HamadAbdulla_7
    @HamadAbdulla_7 Рік тому +2

    Thanks great content

  • @palgonda
    @palgonda 6 місяців тому

    #codeholic what a wonderful tutorial. Every sentence is meaninful and this must have information for everyone deve;oping with Laravel

  • @younessnassibi1819
    @younessnassibi1819 Рік тому +1

    thanks a lot brother , #thecodeholic

  • @sincead
    @sincead Рік тому +1

    Great content as always! Thanks #thecodeholic and can’t wait to see the rest of the course 👍

  • @abdullahelsaid
    @abdullahelsaid Рік тому

    Thank you.
    Excited to be a part of this learning experience. #thecodeholic

  • @codernerd7076
    @codernerd7076 Рік тому +1

    Look like this will be a great series! #thecodeholic

  • @grizzleyapps4959
    @grizzleyapps4959 Рік тому

    Laravel codeholic.... Course let's gooooo,,

  • @jayadevrath2364
    @jayadevrath2364 Рік тому

    Sir i am completing you lof of series like tailwind & alpine js ecommerce is amezing #thecodeholic

  • @thecodecoffeelab
    @thecodecoffeelab Рік тому

    Just brilliant like always! Thank you Zura!❤❤❤❤❤❤🥳🥳🥳🥳🥳

  • @haytamben6721
    @haytamben6721 Рік тому +1

    you are the best #thecodeholic

  • @bembambimbombum
    @bembambimbombum Рік тому

    Happy watching!!

  • @fallanstar
    @fallanstar Рік тому +2

    Sir One Fully Functional Ecommerce Project in Laravel with React Js Plz sir

  • @brahimalloud6636
    @brahimalloud6636 Рік тому +2

    great thing you do my friend giving us the chance to win a course made by ur brilliant mind thanks #thecodeholic

    • @TheCodeholic
      @TheCodeholic  Рік тому

      You can been chosen as a winner of Laravel E-commerce course giveaway. Can you please provide your email address here in comments?

  • @nadetdevfullstack7041
    @nadetdevfullstack7041 Рік тому +1

    Excellent !

  • @dkroyful
    @dkroyful Рік тому

    #thecodeholic this is the greatest tutorial I have ever seen

  • @JustMillIt23
    @JustMillIt23 Рік тому

    #TheCodeholic thanks for sharing with us. I look forward to learning.

  • @kemal6039
    @kemal6039 Рік тому

    Lmao I wasn't expecting to see kiralık aşk on a laravel tutorial, my parents love that show

  • @ArielLagata-t4o
    @ArielLagata-t4o Рік тому

    #TheCodeholic
    The best tutor in the internet now a days.

  • @riadhcoding
    @riadhcoding 7 місяців тому +1

    Brother I can watch this tutorial without use docker ???!!

  • @Colwc
    @Colwc Рік тому

    You are awesome! Thank you for all the great content #thecodeholic.

  • @EsyleAdjohou
    @EsyleAdjohou Рік тому +1

    it's very helpful #thecodeholic

  • @devsun9063
    @devsun9063 Рік тому +1

    Great series . 👍 #thecodeholic

  • @chanmyaemaung
    @chanmyaemaung Рік тому +1

    I appreciate your time and effort in creating such a wonderful resource.
    #thecodeholic

  • @bhubonsutradhar7036
    @bhubonsutradhar7036 Рік тому +1

    You are always great. Love from heart.❤ #thecodeholic

  • @zeeu
    @zeeu Рік тому +1

    10/10 🥰🥰🥰

  • @vmvm9758
    @vmvm9758 Рік тому

    19:12 you can use constrained() instead of reference and on

  • @KhantSiThuPhyo-c5c
    @KhantSiThuPhyo-c5c 8 місяців тому

    have you make blade template tutorial for admin and clients ?i just wanna try without Filament

  • @HidayatLahabu
    @HidayatLahabu Рік тому +2

    I had trouble in file upload thumbnail, I got Cross-Origin Request Blocked and got 404 error finding thumbnail in public storage when view the post, is there any solution ?

  • @karlson2804
    @karlson2804 Рік тому

    Never know about filament, good staff. #thecodeholic

  • @gchiqo
    @gchiqo Рік тому

    Thanks for the great tutorial! It's amazing to see how far I can go with Laravel and all the possibilities it offers. #thecodeholic

  • @mukhtarhussain8954
    @mukhtarhussain8954 Рік тому +1

    thank you #thecodeholic

  • @awaixasad7937
    @awaixasad7937 Рік тому

    Great Video and quality content as always! Thanks #thecodeholic and can’t wait to see the rest of the course like this

  • @mhasancoder
    @mhasancoder Рік тому +1

    Love your content Zura, take love. #thecodeholic ❤❤

  • @BorisPZ
    @BorisPZ Рік тому

    Great tut! Is there some kind of instructions or hint how to implement photo gallery inside post using filament?

  • @grigodoes
    @grigodoes Рік тому

    Thanks for video😍
    Can you show CI/CD process for Laravel? May be with GitLab

  • @dimas_bimmer
    @dimas_bimmer Рік тому +1

    #thecodeholic - Great Content

  • @expertrobotpro
    @expertrobotpro 5 місяців тому

    Great Video thank you so much really helpful sir
    #thecodeholic

  • @WilliamBondIII
    @WilliamBondIII Рік тому +1

    #thecodeholic.. just found your channel today this is awesome content keep up the

  • @eisaxeisax
    @eisaxeisax Рік тому

    its giving soul jah love

  • @naddielsanchez6288
    @naddielsanchez6288 Рік тому

    Great tutorial!!! Good job!!!!
    Quick question: on Filament my pictures are not getting showing.
    why?
    thank you in advance

  • @mukhammadaziz_a
    @mukhammadaziz_a Рік тому +1

    Very clear and great project. #thecodeholic

  • @parvezhabib4562
    @parvezhabib4562 Рік тому +1

    That will be amazing!! #thecodeholic

  • @KiaBoluki
    @KiaBoluki Рік тому +1

    Thank you very much #thecodeholic
    I'm immensely grateful for the exceptional content you share on your #thecodeholic UA-cam channel. Your clear and concise tutorials have been invaluable in my development journey. Your passion and dedication to helping others are truly inspiring. Thank you for creating an inclusive learning environment and fostering a supportive community. Your videos make complex concepts approachable and your enthusiasm is contagious. I eagerly anticipate each new release, eager to expand my coding skills. Thank you for being an outstanding educator and mentor. Your impact on aspiring developers like me is immeasurable.

    • @TheCodeholic
      @TheCodeholic  Рік тому

      Thank you my friend. Such comments are my biggest motivation

  • @biruktekle2126
    @biruktekle2126 Рік тому +1

    #thecodeholic this was an awesome videp

  • @aguud
    @aguud Рік тому

    part 2 please

  • @Incognito-kp9lk
    @Incognito-kp9lk Рік тому

    #thecodeholic I really enjoyed your custom PHP framework build. I hope to enjoy this too.

  • @NikolaNikolic-x3f
    @NikolaNikolic-x3f Рік тому

    #thecodeholic, lets learn something new (never did e-commerce before)

  • @kshitizkhanal2630
    @kshitizkhanal2630 Рік тому

    Thank u for this #thecodeholic.