mirovit/nova-notifications

View on GitHub
src/NovaNotifications.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Mirovit\NovaNotifications;

use Laravel\Nova\Nova;
use Laravel\Nova\Tool;

class NovaNotifications extends Tool
{
    /**
     * Perform any tasks that need to happen when the tool is booted.
     *
     * @return void
     */
    public function boot()
    {
        Nova::script('notifications', __DIR__.'/../dist/js/tool.js');
        Nova::style('notifications', __DIR__.'/../dist/css/tool.css');
    }

    /**
     * Build the view that renders the navigation links for the tool.
     *
     * @return \Illuminate\View\View
     */
    public function renderNavigation()
    {
        return '';
    }
}