LaravelPackages.net
Acme Inc.
Toggle sidebar
marko298/nova-single-record-resource

Laravel Nova Single Record Resource. Shows a link in the navigation bar directly to the only record of the resource

43
1
v1.1.2
About marko298/nova-single-record-resource

marko298/nova-single-record-resource is a Laravel package for laravel nova single record resource. shows a link in the navigation bar directly to the only record of the resource. It currently has 1 GitHub stars and 43 downloads on Packagist (latest version v1.1.2). Install it with composer require marko298/nova-single-record-resource. Discover more Laravel packages by marko298 or browse all Laravel packages to compare alternatives.

Last updated

Laravel Nova: Single Record Resource

License Latest Version on Packagist Total Downloads StyleCI

Fork of marko298/nova-single-record-resource

Adds the ability to create a navigation link directly to the detail page of a resource. Useful for models that will contain only a single record.

Prerequisites

Installation

$ composer require marko298/nova-single-record-resource

Add SupportSingleRecordNavigationLinks trait to Resources:

<?php

namespace App\Nova;

use Marko298\NovaSingleRecordResource\Traits\SupportSingleRecordNavigationLinks;
use Laravel\Nova\Resource as NovaResource;

abstract class Resource extends NovaResource
{
    use SupportSingleRecordNavigationLinks;

    ...
}

Publish assets:

$ php artisan vendor:publish --provider="Marko298\NovaSingleRecordResource\Providers\NovaSingleRecordResourceServiceProvider"

Update

When updating it is important to republish the assets, like so:

$ php artisan vendor:publish --force --provider="Marko298\NovaSingleRecordResource\Providers\NovaSingleRecordResourceServiceProvider"

Uninstallation

Remove from composer

$ composer remove marko298/nova-single-record-resource

Remove SupportSingleRecordNavigationLinks trait from your Nova Resources

use SupportSingleRecordNavigationLinks;

Remove the customized navigation template

rm resources/views/vendor/nova/resources/navigation.blade.php

Usage

Place the following method on models that have only a single record.

class MyResource extends Resource
{
    public static function singleRecord(): bool
    {
        return true;
    }
}

Optionally override the resource identifier.

class MyResource extends Resource
{
    /**
     * @return string|int
     */
    public static function singleRecordId(): bool
    {
        return 1;
    }
}

How it works

Laravel Nova has the ability to override the Blade template used to render the navigation sidebar. The template is copied from Nova version v1.2.0 and altered with a few lines to support linking a resource directly to the detail view. When publishing vendor assets with the tag nova-views the template will be placed in the project resources/views/vendor/nova/resources folder.

View changes
@if (method_exists($resource, 'singleRecord') && $resource::singleRecord())
    <router-link :to="{
    name: 'detail',
    params: {
        resourceName: '{{ $resource::uriKey() }}',
        resourceId: {{ $resource::singleRecordId() }}
    }
}" class="text-white text-justify no-underline dim">
        {{ $resource::label() }}
    </router-link>
@else
    <router-link :to="{
    name: 'index',
    params: {
        resourceName: '{{ $resource::uriKey() }}'
    }
}" class="text-white text-justify no-underline dim">
        {{ $resource::label() }}
    </router-link>
@endif
Comments