Filament Adminpanel for Laravel API Project: New Course

Поделиться
HTML-код
  • Опубликовано: 30 июл 2024
  • Let me demonstrate to you how easy it is to create an admin panel for an existing database.
    - Full course "Filament Adminpanel for Booking.com API Project": laraveldaily.com/course/filam...
    - Another course for beginners: "Laravel Filament Admin: Practical Course": laraveldaily.com/course/filam...
    - - - - -
    Support the channel by checking out my products:
    - My Laravel courses: laraveldaily.com/courses
    - Laravel QuickAdminPanel: quickadminpanel.com
    - Livewire Kit Components: livewirekit.com
    - - - - -
    Other places to follow:
    - My weekly Laravel newsletter: us11.campaign-archive.com/hom...
    - My personal Twitter: / povilaskorop
  • ХоббиХобби

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

  • @countremy730
    @countremy730 Год назад +3

    I like the idea of courses that build on other courses. It keeps older courses from going stale. There have been many times I go back to an older course and think if there is a refactor, a way to test, or an updated way of doing something and end up going in a completely different direction than before. Thank you for this, Povilas and Team.

  • @richardwheatley7194
    @richardwheatley7194 Год назад +3

    Sometimes I wonder how much "magic" is desirable.

  • @fantastique
    @fantastique Год назад

    I started a small fillament project just for learning purposes and I liked it a lot at first, but it was extreamly slow to render 500+ items on the page and if I tried to enable filters on this my browser stopped to respond.
    Then I tested a similar project with vue and inertia and it worked really fast even with filters.

    • @LaravelDaily
      @LaravelDaily  Год назад +1

      We've just recently debugged a scenario where a developer built filters not according to the official docs and introduced N+1 query problem and performance issues that way. So it may be not the Filament to blame for performance.

  • @VadimBesedin
    @VadimBesedin Год назад

    Does Filament comes with Livewire, Alpine and Tailwind installed or we need to install it all before Filament?

    • @thijmenh8209
      @thijmenh8209 Год назад +2

      everything is included what you need

  • @khaledwaleed6395
    @khaledwaleed6395 Год назад

    Well is there is any course on elastic search and micro service's

    • @LaravelDaily
      @LaravelDaily  Год назад +1

      No, I don't personally work with either of those topics so can't create a course about it.
      With full-text search, we use Algolia in our team, so a few content pieces about it:
      - laraveldaily.com/video/laravel-search-many-models-with-collections-or-algolia
      - laraveldaily.com/post/laravel-multiple-model-search-queries-scout-packages

  • @HawrazNawzad93
    @HawrazNawzad93 Год назад

    would you make a video about perpage pagination with livewire and session pls

    • @LaravelDaily
      @LaravelDaily  Год назад

      What is exactly the problem you're facing? Not sure if it's worth shooting a video if the docs are very clear: laravel-livewire.com/docs/2.x/pagination

    • @HawrazNawzad93
      @HawrazNawzad93 Год назад

      @@LaravelDaily
      i have created this perpage to user can control pagination, but when i click to page 2 in pagination show me an error
      public $perPage = 25;
      public function initializeWithPagination()
      {
      $this->perPage = session()->get('perPage', $this->perPage);

      }
      public function updatedPerPage($value)
      {
      session()->put('perPage',$value);
      }

  • @mohamed77599
    @mohamed77599 Год назад

    voyager vs filament
    Best?

  • @JohnRoux
    @JohnRoux Год назад

    Highly recommend instead of using roles for permission/policy/authorization, you use permissions instead.
    You could even use user_types or something like that, but don't use roles!!!
    Flat permission structures