for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BBSLab\NovaTranslation\Tools;
use BBSLab\NovaTranslation\NovaTranslationServiceProvider;
use Laravel\Nova\Nova;
use Laravel\Nova\Tool;
class TranslationMatrix extends Tool
{
/**
* {@inheritdoc}
*/
public function boot()
Nova::script(NovaTranslationServiceProvider::PACKAGE_ID, __DIR__.'/../../dist/js/'.NovaTranslationServiceProvider::PACKAGE_ID.'.js');
Nova::style(NovaTranslationServiceProvider::PACKAGE_ID, __DIR__.'/../../dist/css/'.NovaTranslationServiceProvider::PACKAGE_ID.'.css');
}