GithubHelp home page GithubHelp logo

Comments (5)

voidgraphics avatar voidgraphics commented on May 24, 2024

Hello, I am not sure what you mean exactly. That screenshot does not have any cards in it, it has Panels, which are defined exactly how you mentioned.

Here's an example of a nova-page template with a Panel:

namespace App\Nova\Templates;

use Illuminate\Http\Request;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Panel;
use Whitecube\NovaPage\Pages\Template;

class About extends Template
{

    /**
     * Get the fields displayed by the resource.
     *
     * @param  \Illuminate\Http\Request $request
     * @return array
     */
    public function fields(Request $request)
    {
        return [
            new Panel('Pagina informatie', $this->somePageFields()),
        ];
    }

    protected function somePageFields()
    {
        return [
            Text::make('Title'), // ...
        ]
    }

    /**
     * Get the cards available for the request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public function cards(Request $request)
    {
        return [];
    }
}

from nova-page.

wimurk avatar wimurk commented on May 24, 2024

@voidgraphics Yes i meant panels. I am kinda new to nova and its components. The panels are only showed when viewing the page in detail and not when editing one. Would be nice if there were panels to when editing a page.

from nova-page.

voidgraphics avatar voidgraphics commented on May 24, 2024

Indeed it would be nice. This is an issue with Laravel Nova though: laravel/nova-issues#29

from nova-page.

toonvandenbos avatar toonvandenbos commented on May 24, 2024

The good news is that the issue @voidgraphics mentioned has the planned tag applied to it.

@wimurk in the meantime you could use the official Heading field in order to add a little bit more structure to the edit pages. Hope this helps!

from nova-page.

wimurk avatar wimurk commented on May 24, 2024

Yes that helps. The heading field isn't released yet so i will have to wait till laravel/nova-issues#29 is releases

from nova-page.

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.