PHPackages                             visanduma/nova-back-navigation - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. visanduma/nova-back-navigation

ActiveLibrary

visanduma/nova-back-navigation
==============================

The missing Back button of NOVA

v1.0.3(3y ago)46.8k↓50%1[2 issues](https://github.com/Visanduma/nova-back-navigation/issues)MITPHPPHP ^8.0

Since Oct 19Pushed 3y ago2 watchersCompare

[ Source](https://github.com/Visanduma/nova-back-navigation)[ Packagist](https://packagist.org/packages/visanduma/nova-back-navigation)[ RSS](/packages/visanduma-nova-back-navigation/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (1)Versions (5)Used By (0)

[![](https://github.com/Visanduma/nova-back-navigation/raw/c0602f0eb87062482531d126bd3bef097427da69/resources/img/banner.png?raw=true)](https://github.com/Visanduma/nova-back-navigation/blob/c0602f0eb87062482531d126bd3bef097427da69/resources/img/banner.png?raw=true)

[![Latest Stable Version](https://camo.githubusercontent.com/ea66deeed75c1e20debe9536526107bcf94c00c5f39aff1a29ddc15c35862622/687474703a2f2f706f7365722e707567782e6f72672f766973616e64756d612f6e6f76612d6261636b2d6e617669676174696f6e2f76)](https://packagist.org/packages/visanduma/nova-back-navigation) [![Total Downloads](https://camo.githubusercontent.com/536015927bf8e9e43839b59bce14ea6b9b0c9888ba3f6d143b6ef5aff469e2e1/687474703a2f2f706f7365722e707567782e6f72672f766973616e64756d612f6e6f76612d6261636b2d6e617669676174696f6e2f646f776e6c6f616473)](https://packagist.org/packages/visanduma/nova-back-navigation) [![Latest Unstable Version](https://camo.githubusercontent.com/100c9aa85665c873b485971980ccf98ab4aa36fb547768bb02fcfdb8dc8b83d6/687474703a2f2f706f7365722e707567782e6f72672f766973616e64756d612f6e6f76612d6261636b2d6e617669676174696f6e2f762f756e737461626c65)](https://packagist.org/packages/visanduma/nova-back-navigation) [![License](https://camo.githubusercontent.com/f264f378828d41d849144f92dbbde47397a1f1397b4df2e440fc20e0f7b455ee/687474703a2f2f706f7365722e707567782e6f72672f766973616e64756d612f6e6f76612d6261636b2d6e617669676174696f6e2f6c6963656e7365)](https://packagist.org/packages/visanduma/nova-back-navigation) [![PHP Version Require](https://camo.githubusercontent.com/ba716f52152f0ba88e3d5c4f8bb99a1924c1bcea26bbebfb2d4a2164f1f64c30/687474703a2f2f706f7365722e707567782e6f72672f766973616e64756d612f6e6f76612d6261636b2d6e617669676174696f6e2f726571756972652f706870)](https://packagist.org/packages/visanduma/nova-back-navigation)

Laravel Nova back navigation
============================

[](#laravel-nova-back-navigation)

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

[![screenshot](/resources/img/sc-1.png)](/resources/img/sc-1.png)

### Installation

[](#installation)

1. Run command

```
composer require visanduma/nova-back-navigation

```

2. Register tool with `NovaServiceProvider`

```
use Visanduma\NovaBackNavigation\NovaBackNavigation;

class NovaServiceProvider extends NovaApplicationServiceProvider
{

public function tools()
    {
        return [
            ..
            new NovaBackNavigation(),
        ];
    }

```

3. Publish language &amp; config files (optional)

```
php artisan vendor:publish --provider="Visanduma\NovaBackNavigation\ToolServiceProvider"

```

4. Great !. you are done

### Configure any urls to show the back button

[](#configure-any-urls-to-show-the-back-button)

```
