Dwayne
The session is not shared across multiple domains with tenancy
I have configured a tenant in the panel. It works fine, however, the sessions are not shared with other domains, but the sessions are only shared within the domain where you log in. After the redirect (to tenant domain), the session gets cleared.
When logging in to the main domain
https://dashboard.test/login
, the tenant account is linked to the domain name https://app.otherdomain.test
, and I'm redirected there, which works fine. However, the session is lost, requiring me to log in again on the tenant domain.
How can I ensure that when logging in to the main domain, I am redirected to my own tenant domain and automatically logged in there?17 replies
Table pagination not visible in cluster resource table
In a table within a Cluster, the pagination tools are not displayed as they are in a normal resource table. How can I enable this?
For example, on https://demo.filamentphp.com/shop/orders, "Showing 1 to 10 of 1,001 results" is visible. However, this is not visible on https://demo.filamentphp.com/shop/products/products.
5 replies
Assign an array to a Forms\Components\Select
How can I assign an array to a Forms\Components\Select? After executing the Action 'refresh_status', the Select options should be set with $statuses.
$statuses has the value:
[
"pending" => "Wachtend op betaling"
"processing" => "In behandeling"
"on-hold" => "In de wacht"
"completed" => "Afgerond"
"cancelled" => "Geannuleerd"
"refunded" => "Terugbetaald"
"failed" => "Mislukt"
"checkout-draft" => "Concept"
]
25 replies