visanduma/nova-back-navigation is a Laravel package for the missing back button of nova.
It currently has 4 GitHub stars and 7.037 downloads on Packagist (latest version v1.0.3).
Install it with composer require visanduma/nova-back-navigation.
Discover more Laravel packages by visanduma
or browse all Laravel packages to compare alternatives.
Last updated
The missing Back button of laravel nova 4
This back button uses javascript history.back() method for navigation. Back button will be automatically attached to the default Card component.
so additional configuration not needed

composer require visanduma/nova-back-navigation
NovaServiceProvideruse Visanduma\NovaBackNavigation\NovaBackNavigation;
class NovaServiceProvider extends NovaApplicationServiceProvider
{
public function tools()
{
return [
..
new NovaBackNavigation(),
];
}
php artisan vendor:publish --provider="Visanduma\NovaBackNavigation\ToolServiceProvider"
<?php
// config for nova back button
return [
/*
Enable back button for following routes
*/
'enabled_urls' => [
"nova/resources/*/*",
]
];