Ibrahim Bougaouaibrahimbougaoua.hashnode.dev·Sep 24, 2024Customizable solution for managing dynamic content in Laravel projects using FilamentPHP.Filawidget is a dynamic content and widget management package for FilamentPHP, providing an easy-to-use drag-and-drop interface to manage widgets, widget areas, and hierarchical pages. The package is designed to enhance the customization of page layo...DiscussJavaScript
Ibrahim Bougaouaibrahimbougaoua.hashnode.dev·Sep 24, 2024Filament Progress indicatorsThe Progress Management Package for FilamentPHP provides a flexible and easy-to-use solution for tracking and visualizing progress within Filament admin panels. It includes custom Filament components for displaying linear and circular progress indica...DiscussFrontend Development
Ibrahim Bougaouaibrahimbougaoua.hashnode.dev·Sep 24, 2024Filasortable reorderable drag-and-drop.Filasortable package for reorderable drag-and-drop table for modern browsers and touch devices, just register the pluginafter that you will see new button appear at the header of table where you can enable and disable the sort option for the current ...DiscussJavaScript
Ibrahim Bougaouaibrahimbougaoua.hashnode.dev·Sep 24, 2024Filament Sort OrderTransform the sorting order of any table effortlessly by installing this package. It provides seamless functionality without requiring any manual code writing. Simply install it, and you're good to go ! Youtube Video Installation You can install t...DiscussJavaScript
Ibrahim Bougaouaibrahimbougaoua.hashnode.dev·Sep 24, 2024Radio button imageRadio button image is all about replacing traditional radio buttons with images. Youtube Video Installation You can install the package via composer: composer require ibrahimbougaoua/radiobuttonimage You can publish the config file with: php arti...DiscussFrontend Development
Ibrahim Bougaouaibrahimbougaoua.hashnode.dev·Sep 24, 2024Filament menu scroll fix.Now whene a user clicks on an item it sets focus on the selected item without the weird reloading and scrolling up the list, Especially if the user contains a lot of elements he would have to scroll the selected element manually. Before After Insta...DiscussHTML5
Ibrahim Bougaouaibrahimbougaoua.hashnode.dev·Sep 24, 2024Filament Star rating field & column.Installation You can install the package via composer: composer require ibrahimbougaoua/filament-rating-star You can publish the config file with: php artisan vendor:publish --tag="filament-rating-star-config" This is the contents of the published ...DiscussFrontend Development
Soulisozzy98.hashnode.dev·Sep 9, 20246 reasons why You Should Learn Laravel/Livewire Over Next.jsNextJs is a framework that unlike Laravel/Livewire is very underrated. Like many noobs I learned HTML, CSS and JS to do from simple, YET elegant websites to learn NodeJS, React and NextJs to make complex web applications. Without forgetting to hate t...DiscussLivewire
David Carrdcblog.dev·Aug 30, 2024Enhance Your Web Applications with These Livewire UI KitsAre you looking to enhance your Laravel Livewire projects with top-notch UI components? Look no further! In this article, we explore some of the best Livewire UI kits available, each designed to streamline your development process and elevate your we...Discuss·361 readsui kits
Ross Lirossli.hashnode.dev·Jul 21, 2024livewire 3 教程-002-Livewire 3 中的 actions 教程Livewire 3 中的 actions 教程 简介: 在 Livewire 中,actions 是用来告诉 Livewire 执行某些操作的方式。它们类似于传统 MVC 框架中的控制器方法,但更简单且更强大。本文将详细介绍 Livewire 3 中 actions 的使用方法,并通过一个计数器示例来演示其基本用法。 创建组件 首先,我们需要创建一个新的 Livewire 组件。在终端中运行以下命令: php artisan make:livewire Counter 这将创建两个文件:C...DiscussLivewire