johncarter
johncarter
FFilament
Created by johncarter on 9/18/2024 in #❓┊help
Why is my register page always redirecting to `/users`?
I reqlly appreciate your time Adam, thanks.
13 replies
FFilament
Created by johncarter on 9/18/2024 in #❓┊help
Why is my register page always redirecting to `/users`?
That is an amazing ability - to diagnose problems with limited information and without context.
13 replies
FFilament
Created by johncarter on 9/18/2024 in #❓┊help
Why is my register page always redirecting to `/users`?
Thank you sir. That was what it must be.
13 replies
FFilament
Created by johncarter on 9/18/2024 in #❓┊help
Why is my register page always redirecting to `/users`?
Thanks for the insight adam. Only one panel. No route service provider either. It's a mystery.
13 replies
FFilament
Created by johncarter on 9/18/2024 in #❓┊help
Why is my register page always redirecting to `/users`?
I ended up binding a new RegistrationResponse, but still feels weird.
13 replies
FFilament
Created by johncarter on 9/18/2024 in #❓┊help
Why is my register page always redirecting to `/users`?
Hello Adam, thanks for replying. Yes it is. Just a couple of removed fields from the form component. No other mods .
13 replies
FFilament
Created by johncarter on 2/29/2024 in #❓┊help
Can I render a custom 403 page within the context of a panel?
Thanks! I ended up doing publishing the laravel errors layout (resources/views/errors/minimal.blade.php), which is an okay solution:
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>@yield('title')</title>

@filamentStyles

{{ filament()->getTheme()->getHtml() }}
{{ filament()->getFontHtml() }}

<style>
:root {
--font-family: '{!! filament()->getFontFamily() !!}';
}
</style>

</head>

<body class="bg-gray-50 lg:items-center flex justify-center min-h-screen p-6 font-sans antialiased">
<x-filament::section class="w-full max-w-md">
<div class="space-y-8 text-center">
<div class="space-y-4">
<x-filament::section.heading class="!text-3xl">
@yield('code') <span class="font-normal"> @yield('message')</span>
</x-filament::section.heading>
<p class="text-sm">Sorry — we've encountered an error.</p>
</div>

<div><x-filament::link icon="heroicon-o-arrow-uturn-left" iconSize="sm" type="button" :href="filament()->getHomeUrl()">Back to the dashboard</x-filament::link></div>
</div>
</x-filament::section>
</body>

</html>
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>@yield('title')</title>

@filamentStyles

{{ filament()->getTheme()->getHtml() }}
{{ filament()->getFontHtml() }}

<style>
:root {
--font-family: '{!! filament()->getFontFamily() !!}';
}
</style>

</head>

<body class="bg-gray-50 lg:items-center flex justify-center min-h-screen p-6 font-sans antialiased">
<x-filament::section class="w-full max-w-md">
<div class="space-y-8 text-center">
<div class="space-y-4">
<x-filament::section.heading class="!text-3xl">
@yield('code') <span class="font-normal"> @yield('message')</span>
</x-filament::section.heading>
<p class="text-sm">Sorry — we've encountered an error.</p>
</div>

<div><x-filament::link icon="heroicon-o-arrow-uturn-left" iconSize="sm" type="button" :href="filament()->getHomeUrl()">Back to the dashboard</x-filament::link></div>
</div>
</x-filament::section>
</body>

</html>
3 replies
FFilament
Created by johncarter on 2/15/2024 in #❓┊help
What is the "Filament way" of showing a dismissible alert
Looks good, thanks
11 replies
FFilament
Created by johncarter on 2/15/2024 in #❓┊help
What is the "Filament way" of showing a dismissible alert
But after checking, I don't think there is anything like this as a component.
11 replies
FFilament
Created by johncarter on 2/15/2024 in #❓┊help
What is the "Filament way" of showing a dismissible alert
Yeah you are right, was trying to avoid technical debt / non-comformity
11 replies
FFilament
Created by johncarter on 2/15/2024 in #❓┊help
What is the "Filament way" of showing a dismissible alert
Thanks @Patrick1989 Its not really a modal effect I am looking for
11 replies
FFilament
Created by johncarter on 1/30/2024 in #❓┊help
Action button not updating with `isProcessing`
2 replies
FFilament
Created by erdiegoant on 8/27/2023 in #❓┊help
Create tenant page breaks if we have a custom profile page
I think you can't have a Filament\Pages\Page without a tenant. It has to be a Filament\Pages\SimplePage
18 replies
FFilament
Created by erdiegoant on 8/27/2023 in #❓┊help
Create tenant page breaks if we have a custom profile page
18 replies
FFilament
Created by erdiegoant on 8/27/2023 in #❓┊help
Create tenant page breaks if we have a custom profile page
Did anyone open an issue?
18 replies
FFilament
Created by erdiegoant on 8/27/2023 in #❓┊help
Create tenant page breaks if we have a custom profile page
Did anyone solve that yet?
18 replies
FFilament
Created by erdiegoant on 8/27/2023 in #❓┊help
Create tenant page breaks if we have a custom profile page
Yeah, I'm facing the same issue. If there is no tenant created yet i.e. you get redirected to /{panel}/new to create a tenant the edit profile menu item is still attempted to be created but the /{panel}/{tenant}/edit-profile can't be created.
18 replies
FFilament
Created by johncarter on 10/2/2023 in #❓┊help
Is it possible to render a table component inside a form component?
Thanks Adam, Ill try and go down the customised query relation manager route.
5 replies
FFilament
Created by Irfan Ali on 9/30/2023 in #❓┊help
Remove default Buttons:
I think that does it.
4 replies
FFilament
Created by Irfan Ali on 9/30/2023 in #❓┊help
Remove default Buttons:
protected function getFormActions(): array
{
return [];
}
protected function getFormActions(): array
{
return [];
}
In the Resources/YourModelResource/CreateYourModel.php class
4 replies