Spark is not defined

539 Views Asked by At

I using spark in laravel with vue.js. I add in home.blade.php and I got this error:

Uncaught ReferenceError: Spark is not defined

what I had done:

php artisan spark:install 
2

There are 2 best solutions below

0
On

You need to either install the Spark Installer or install via Composer before you can use php artisan spark commands.

See installation info at https://spark.laravel.com/docs/5.0/installation#installation

0
On

Make sure you include the script variables for spark

<script>
    window.Spark = @json(array_merge(Spark::scriptVariables(), []));
</script>

In your <head></head>