Code Monkey home page Code Monkey logo

Comments (3)

seche avatar seche commented on May 24, 2024 1

@bolechen Found the answer. Might want to add to the documentation that the Causer requires that the Causer Nova resource has the title defined for it to display on the index and select inputs on the form view. In most cases that would be the User Nova resource.

/**
 * Get the value that should be displayed to represent the resource.
 *
 * @return string
 */
public function title()
{
    return $this->name;
}

Or public static $title = 'name';

Ref: https://nova.laravel.com/docs/1.0/resources/relationships.html#title-attributes

from nova-activitylog.

bolechen avatar bolechen commented on May 24, 2024

What version of nova are you using? Can you provide some more detailed information?

from nova-activitylog.

seche avatar seche commented on May 24, 2024

@bolechen

In the fields for the ActivityLog resource MorphTo::make('Causer', 'causer') shows a dash like I highlighted in the yellow part below.

image

SO I had to extend the class and using a text field I generated the link to the user object. Not ideal but works as you can see above the next column to the yellow one.

public function fields(Request $request)
    {
        return [
...
            MorphTo::make('Causer', 'causer'),
            Text::make('Causer', 'causer_id')->displayUsing(function ($user_id) {
                return '<a href="/nova/resources/users/'.$user_id.'" class="no-underline dim text-primary font-bold">'. strtoupper(\App\Models\User::find($user_id)->username) . '</a>';
            })->asHtml(),
....

We're still using Nova 3.

from nova-activitylog.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.