Created
December 13, 2018 20:12
-
-
Save bayareawebpro/72bc655b3b2bce0410ca2d1e48a9457d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class FieldServiceProvider extends ServiceProvider{ | |
/** | |
* Bootstrap the field services. | |
* @return void | |
*/ | |
public function boot() | |
{ | |
Nova::serving(function (ServingNova $event) { | |
$files = app('files'); | |
if($files->exists(__DIR__.'/../dist/hot')){ | |
Nova::remoteScript('http://localhost:8080/js/field.js'); | |
}else{ | |
Nova::script('myField', __DIR__.'/../dist/js/field.js'); | |
} | |
Nova::style('myField', __DIR__.'/../dist/css/field.css'); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment