pdewit/nova-external-url

An external URL Laravel Nova field.

Installs: 309 703

Dependents: 0

Suggesters: 0

Security: 0

Stars: 31

Watchers: 2

Forks: 6

Open Issues: 5

Language:Vue

1.0.3 2018-11-26 14:51 UTC

This package is not auto-updated.

Last update: 2024-04-28 03:36:13 UTC


README

Adds the ability to show external URLs in the detail and index views of resources. It uses the resolving feature from Nova to generate links.

It will show up in the detail view like this:

detail-view.png?raw=true

And in the index view like this:

index-view.png?raw=true

Installation and usage

You can require this package using composer:

composer require pdewit/nova-external-url

You can add the field with a resolver as follows:

use Pdewit\ExternalUrl\ExternalUrl;

ExternalUrl::make('Google Link', function () {
    return 'https://www.google.com/search?q=' . $this->name;
}),

Customising the displayed text

You can customise the displayed text using the linkText function like so:

use Pdewit\ExternalUrl\ExternalUrl;

ExternalUrl::make('Google Link', function () {
    return 'https://www.google.com/search?q=' . $this->name;
})->linkText($this->name),

The label below the link normally shows the URL, but it can be overridden:

use Pdewit\ExternalUrl\ExternalUrl;

ExternalUrl::make('Google Link', function () {
    return 'https://www.google.com/search?q=' . $this->name;
})->labelText('View search results on Google'),