#filamentphp

2025-06-15

#Filament 4 Beta Released with New #Tiptap Rich Editor 🎉

• 🏷️ Merge Tags with dynamic data integration using {{}} syntax and searchable previews for #Laravel applications

🧵 👇 #filamentphp #php

Filament :verified:filament@phpc.social
2025-06-11

Save the date! This Friday @danharrin will be on Nuno's Livestream.

#filamentphp
mastodon.social/@nunomaduro/11

Filament :verified:filament@phpc.social
2025-06-07

Three more days until Laravel Live UK. @danharrin will open the conference and show what's new in Filament v4.

Which also means: Only three more days until v4 beta!

#laravelliveuk #laravel #filamentphp

Florian Langerflanger@phpc.social
2025-05-30

Today I gave a talk at the #Laravel #Vienna #Meetup about the upcoming version 4 of #FilamentPHP and its features. I’m very excited for the release 🙌

2025-05-24

Filament PHP documentation is not bad, but for fuck sake they like to put code without context.

It makes Nova documentation worth paying for just for the hassle.

Filament :verified:filament@phpc.social
2025-04-28

Filament v4 is coming 🔥

We just released a blog post about the new features, improvements and the date of the first beta release on our website:

filamentphp.com/content/alexan

#laravel #filamentphp

2025-04-14

The more I make something using AlpineJS, the more I like it.

Sometimes you don't need to figure it out with Vue. You only need some AlpineJS magic and that's it, no need to spin up a whole Vue framework on the page.

Add that to Livewire and Filament PHP and you're all set to create small utilities without hacking your way into the frontend.

2025-02-25

🌐 Moderne Technik für schnelle Infos: Unterrichtsausfall in Bayern digital & effizient! 🚀

Mit dem TALL-Stack haben wir eine performante Web-App für das Bayerische Staatsministerium für Unterricht und Kultus entwickelt! Dank Livewire bleibt die App interaktiv, während AlpineJS für dynamische UI sorgt. Tailwind CSS hält das Design schlank & flexibel. Ein perfekter Stack für schnelle Entwicklung & gute UX! 🎯

in2code.de/aktuelles/unterrich

#Laravel #Livewire #AlpineJS #TailwindCSS #PHP #FilamentPHP

2024-12-19

🎯 Core Features

• Integrates #vkurko's #opensource calendar as #FullCalendar alternative for #FilamentPHP panels
• Supports event handling, drag & drop functionality, and resource management
• Custom styling options with #Tailwind support

2024-12-19

🔧 #FilamentPHP Calendar Integration: 10k Downloads Milestone! 🚀

🎉 Achievement
• Just reached 10,000 package downloads on #composer
• Trusted by growing developer community
• Proven stability and reliability

#php #Laravel

kaiserkiwi :kiwibird:kaiserkiwi@corteximplant.com
2024-10-21

Ok, that's super strange. I edited the file on the server to make sure it would work without these lines. Now the same error is still there pointing to a line where the code isn't there anymore. Even after `php artisan optimize:clear` and even a new `php artisan filament:upgrade`.

Something is really off here…

#FilamentPHP #PHP #Laravel #Coding #WebDev

kaiserkiwi :kiwibird:kaiserkiwi@corteximplant.com
2024-10-21

Well that's a weird bug with #FilamentPHP.

Locally everything is fine, but I now deployed it on my dev server and there are errors that make no sense.

In this case a component isn't found, that is found in other resources without problems. The file is there, it works for example for games and studios. But not for genres, reviews or platforms.

I don’t see what the difference in these resources could be. Same directory, same way to create the file… And locally everything works.

Removing the vendor folder and reinstalling via composer did nothing. Re-deploy didn't do anything too. dump-autoload also nothing.

I have absolutely no idea what is going on here.

Edit: Thank you it's fixed. It was supposed to be DateTimePicker not DatetimePicker. (Capital T)

#PHP #Laravel #Coding #WebDev

Error page from Laravel
Title: Class "Filament\Forms\Components\DatetimePicker" not found

The line Forms\Components\DatetimePicker::make('created_at') is highlighted in the file GenreResource.php
kaiserkiwi :kiwibird:kaiserkiwi@corteximplant.com
2024-10-18

Spent a bit of time with #FilamentPHP the last days. I really have to say that I wish I would've done this before.

I always was a #LaravelNova advocate, because it's so incredibly easy to start with. But so many things are extremely difficult with it.

Also the development of Laravel Nova seemingly has stopped with only bugfixes and minor stuff for some months now. For a yearly paid package that's a bit annoying. Especially with this competition.

I completely rebuilt my Questlog admin panel with Filament the last two weeks now and it's so much nicer, easier and more powerful. I maybe spent 4-5 hours now to implement everything I had before and added more stuff.

It's more work than Nova but it's a lot easier to maintain, to extend and to configure. I will definitely stay with Filament for a while.

#PHP #Laravel #WebDev #Coding

2024-10-15

Switched to storing markdown in the database and rendering to HTML on the fly.

Also allows me to add my own commonmark extensions. Added spatie/shiki to get server-rendered code-highlights.
(Need to pr multi-theme support to that package, so it looks great in dark mode as well)

#laravel #filamentphp #sideproject

Screenshot of my read-it-later-app showing the content of an article my Tom MacWright that includes a code snippet.

The screenshot shows the app in dark mode. The code snippet has a light theme (“github-light”).
2024-10-09

Kind of a galaxy-brain moment for me. I think I finally solved the way I clean up the HTML I get from websites:

1. Use mozilla/readability to get the “main" content
2. Pass it through HTML purifier
3. Convert HTML to Markdown (🤯)
4. Convert Markdown back to HTML for displaying in app.
5. Convert Markdown to SSML and pass it to text-to-speech APIs to create audio files. (🤯)

#laravel #filamentphp #sideproject

Screenshot of some PHP pseudo code that explains the concept.
The code reads:

// This is the URL of the content we want to parse
$url = 'https://example.com/blog/2024/10/01/lorem-ipsum/';

// Extract the "main" content from the URL
$parsedContent = parseContent($url);

// Remove unwanted tags and attributes from the content
$purifedAndCleanedContent = purifyContent($parsedContent);

// 🤯 Conver the content to Markdown
$contentAsMarkdown = converHtmlToMarkdown($purifedAndCleanedContent);

// Convert the Markdown content back to HTML to display it in the app
$html = convertMarkdownToHtml($contentAsMarkdown);

// 🤯 Conver Markdown to SSML for text-to-speech
$ssml = convertMarkdownToSsml($contentAsMarkdown);
Florian Langerflanger@phpc.social
2024-10-07

I wrote a blog post about why #FilamentPHP is awesome 🔥

If you haven't tried it in your #laravel #livewire app, you should.

flanger.dev/blog/post/filament

2024-08-01

Still working on this side-project from time to time. Good session today.

- finished the persistent audio-player
- added AWZ Polly as another text-to-speech provider
- new icons 💅
- fixed some bugs in the "Export to Kindle"-feature
- simplified the database tables

Next I really want to create a neat landingpage and waitlist form, so friends can sign-up for it.

#laravel #filamentphp #sideproject

Screenshot of the apps queue view. Showing available actions for each stored entry. For example: Converting text to speech, sending it to a Kindle, adding tags, marking it as a favorite, sharing it, exporting it to a PDF.Screenshot of my app showing an persistent audio player.Screenshot of the macOS Podcast app showing the podcast episode generated by my app.Photo of a Kindle Paperwhite displaying a saved article.
2024-07-24

Launched my second paid FilamentPHP plugin 🎉

Spotlight Pro was on my list for a loong time. The free Spotlight plugin was one of my earliest Filament contributions (2022) and relied on the awesome work of Philo's WireElements Spotlight. I always wanted something something more powerful that fit's Filaments design.

So, I spent a whole week building my own Spotlight component and integrated it with Filament.

filament.pxlrbt.de/spotlight-p

#filamentphp #filament #laravel

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst