dansing
dansing
FFilament
Created by dansing on 11/8/2023 in #❓┊help
Full LMS like https://www.lmsmonks.com
Anyone here familiar with https://www.lmsmonks.com or similar lms system that can be whitelabeled
3 replies
FFilament
Created by dansing on 10/31/2023 in #❓┊help
LMS plugin
Any recommendation for LMS plugin?
3 replies
FFilament
Created by dansing on 10/5/2023 in #❓┊help
Plans / Subscriptions / Plan Features
Do you have any suggestion or package that I can use to handle the subscription part?
4 replies
FFilament
Created by dansing on 9/21/2023 in #❓┊help
Database Notification Actions are Not Saved on Database
Actions are not showing
$job = $event->job;

Notification::make()
->info()
->title('Test')
->body("Test")
->sendToDatabase($job->account->user)
->actions([
ActionsAction::make('view')
->url(fn () => JobResource::getUrl('view', [$job])),
ActionsAction::make('markAsRead')
->markAsRead()
])
;
$job = $event->job;

Notification::make()
->info()
->title('Test')
->body("Test")
->sendToDatabase($job->account->user)
->actions([
ActionsAction::make('view')
->url(fn () => JobResource::getUrl('view', [$job])),
ActionsAction::make('markAsRead')
->markAsRead()
])
;
17 replies
FFilament
Created by dansing on 8/25/2023 in #❓┊help
Proper Way to share Auth session outside filament panel
Where/What to add code to share the current auth session outside filament panel?
3 replies
FFilament
Created by dansing on 8/25/2023 in #❓┊help
How to redirect user to verify email page, after registration?
I'm using the built-in registration feature, and I can't find how to redirect user to verification page after they sign up
27 replies
FFilament
Created by dansing on 8/24/2023 in #❓┊help
How to render icon in blade template using existing filament way?
Here I'm rendering a Star icon from heroicons @for ($i = 1; $i <= 5; $i++) <div @mouseover="hoverRating = {{ $i }}; rating = -1;" @mouseout="hoverRating = -1; rating = state" @click="state = {{ $i }}" > <svg xmlns="http://www.w3.org/2000/svg" x-bind:fill="(hoverRating !== -1 && {{ $i }} <= hoverRating) || ({{ $i }} <= rating) ? 'yellow' : 'white'" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M11.48 3.499a.562.562 0 011.04 0l2.125 5.111a.563.563 0 00.475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 00-.182.557l1.285 5.385a.562.562 0 01-.84.61l-4.725-2.885a.563.563 0 00-.586 0L6.982 20.54a.562.562 0 01-.84-.61l1.285-5.386a.562.562 0 00-.182-.557l-4.204-3.602a.563.563 0 01.321-.988l5.518-.442a.563.563 0 00.475-.345L11.48 3.5z" /> </svg> </div> @endfor
2 replies
FFilament
Created by dansing on 8/23/2023 in #❓┊help
Tab Action
4 replies
FFilament
Created by dansing on 8/22/2023 in #❓┊help
Get Current Panel id issue
13 replies
FFilament
Created by dansing on 8/11/2023 in #❓┊help
Can you help by checking my code for any improvement
2 replies
FFilament
Created by dansing on 8/10/2023 in #❓┊help
Star Rating - Checklist type / Tree / Not sure what to call it tho
9 replies
FFilament
Created by dansing on 8/8/2023 in #❓┊help
Action Modal - SlideOver
2 replies
FFilament
Created by dansing on 8/4/2023 in #❓┊help
Page Policy permission
How can I assign a custom policy authorization for my resource custom page?
3 replies
FFilament
Created by dansing on 8/2/2023 in #❓┊help
How to properly integrate middleware without ending up in a "TOO MANY REDIRECTS" issue
I'm validating the user->is_profile_complete column, then force redirect user to "Complete profile wizard" page, but ending up on too many redirects error
10 replies
FFilament
Created by dansing on 8/2/2023 in #❓┊help
When to use multiple panels?
Is it practical to create different panel for different roles, like Admin, Customer, Vendor
6 replies
FFilament
Created by dansing on 8/2/2023 in #❓┊help
Upgrading from v2 to v3
Experiencing issues with composer update Problem 1 - filament/filament 3.x-dev requires filament/support 3.x-dev -> satisfiable by filament/support[3.x-dev]. - filament/filament v3.0.0 requires filament/support v3.0.0 -> satisfiable by filament/support[v3.0.0]. - filament/filament v3.0.1 requires filament/support v3.0.1 -> satisfiable by filament/support[v3.0.1]. - filament/filament v3.0.2 requires filament/support v3.0.2 -> satisfiable by filament/support[v3.0.2]. - filament/support[v3.0.0, ..., 3.x-dev] require livewire/livewire ^3.0 -> found livewire/livewire[v3.0.0-beta.1, ..., v3.0.0-beta.5] but it conflicts with your root composer.json require (^2.12). - Root composer.json requires filament/filament ^3.0-stable -> satisfiable by filament/filament[v3.0.0, v3.0.1, v3.0.2, 3.x-dev]. Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
10 replies
FFilament
Created by dansing on 7/30/2023 in #❓┊help
Guarded foreign id
I wonder how will you associate a guarded/not in fillable foreign id when creating a new record.
6 replies
FFilament
Created by dansing on 7/29/2023 in #❓┊help
Associate BelongsTo relationship
Hello, I'm new to using Filament. Can I ask if this is an acceptable approach when saving records with a relationship based on authenticated user data? resource: https://gist.github.com/dansingian/d1705d6bb133ffd9fca4aaed7828b5bb create: https://gist.github.com/dansingian/6a05722006d72d1ed2fed80c4890b063
9 replies