Page that extends RegisterTenant gives error.
I am following the docs from the following page to enable tenants within filament. ( https://filamentphp.com/docs/3.x/panels/tenancy#adding-a-tenant-registration-page )
Currenly when I created a new user and I am redirected to the RegisterTeam page which extends the RegisterTenant page I am getting the following error.
The error is very logical but, I am uncertain how to add that function. This error comes from the
index.blade.php
from a clean filament install.
If this is a bug I will create a ticket on GH.
Solution:Jump to solution
Messed it up by myself. The class had a property
$view
which was overriding the view property on the RegisterTenant
class.
Note for others:
When creating a page using artisan make:filament-page
for pages like this remove the view property to check if you get the expected result....1 Reply
Solution
Messed it up by myself. The class had a property
$view
which was overriding the view property on the RegisterTenant
class.
Note for others:
When creating a page using artisan make:filament-page
for pages like this remove the view property to check if you get the expected result.