© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
2 replies
Sourabh

Open the custom page in a new browser tab.

How to open a custom page in Filament in a new browser tab on click?
While clicking on the "view" button it is redirecting to the filament custom page and I want to load the load the filament page in to new browser tab .

<?php
//Livewire class component 

class ProductsPresentationCart extends Component
{
     public function viewPresentation() { 
        return redirect()->route('filament.admin.resources.products.view-product-       presentation');

    }
}
<?php
//Livewire class component 

class ProductsPresentationCart extends Component
{
     public function viewPresentation() { 
        return redirect()->route('filament.admin.resources.products.view-product-       presentation');

    }
}


<?php
 //Filament custom page class 
class ProductPresentationView extends Page
{
    protected static string $resource = ProductResource::class;
    protected static string $view = 'filament.resources.product-resource.pages.product-presentation-view';

    protected static ?string $breadcrumb = 'Product Presentation View';
    protected ?string $heading = 'Product Presentation View';

    protected static ?string $navigationIcon = 'heroicon-o-clipboard-document-check';
}?>
<?php
 //Filament custom page class 
class ProductPresentationView extends Page
{
    protected static string $resource = ProductResource::class;
    protected static string $view = 'filament.resources.product-resource.pages.product-presentation-view';

    protected static ?string $breadcrumb = 'Product Presentation View';
    protected ?string $heading = 'Product Presentation View';

    protected static ?string $navigationIcon = 'heroicon-o-clipboard-document-check';
}?>


I tried the following code in the custom page blade file .

<?php
<x-filament-panels::page target="_blank">
   @livewire('Products.ProductPresentationView')
</x-filament-panels::page>
?>
<?php
<x-filament-panels::page target="_blank">
   @livewire('Products.ProductPresentationView')
</x-filament-panels::page>
?>
image.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Open in new tab
FilamentFFilament / ❓┊help
2y ago
Open a new tab
FilamentFFilament / ❓┊help
3y ago
Table open url in new tab
FilamentFFilament / ❓┊help
3y ago
Custom browser tab title
FilamentFFilament / ❓┊help
2y ago