· laravel · 2 min read
Day 7: One step further
What the app will do? How should it be shape?
You might have get it from previous screenshot but the App name is called “DetectAny” for … Detect Anything :)
The app idea is to let users analyze an image / video / camera stream and create a report of detection out of that media.
Let’s take an example, you have this picture from the last “Laravel EU” conference!
(it’s not the latest laravel EU conference / it’s not @aaroondfrancis) |
And you want to know how many people assisted to this particular talk.
Your option right now is to count manually, one by one, the people in the audience. That’s where DetectAny will come into the game and count for you with his unique AI system powered by ChatGPT10xx00 !
Well you’ll still have to count manually because the model is not ready yet! |
In the day 7, my focus was on improving the model, discover which models can be used and how to present different model to people (UX/UI way).
Laravel wise
I’ve played more with FilamentPHP are really, I love it.
I’ve stuggled a bit with the ability to click on a row in a table and that click should open the detail of the resource in a slideOver.
public static function table(Table $table): Table
{
return $table
->actions([
ViewAction::make()->slideOver(),
])
->recordUrl(url: null);
}