/**
  * Customize general Spark options.
  *
  * @return void
  */
 protected function customizeSpark()
 {
     Spark::configure(['models' => ['teams' => Team::class]]);
 }
Example #2
0
 /**
  * Customize general Spark options.
  *
  * @return void
  */
 protected function customizeSpark()
 {
     Spark::configure(['inEU' => env('SPARK_EU'), 'models' => ['teams' => Team::class]]);
 }