Questions tagged [laravel-spark]

Spark is an experimental project primarily intended for building business oriented SaaS applications, and is highly opinionated towards that use case.

The Laravel Spark is an opinionated way of building out business oriented SaaS applications. It features team management, user roles, recurring billing through Stripe, and much more.

Spark is designed with only one goal in mind, to make scaffolding out a billing system for a SaaS app easy.

Links

News laravel/spark

221 questions
1
vote
1 answer

One time payment with laravel spark?

So, I have been interested in Laravel spark for some time. I am wondering if it supports taking a one-time payment or if you would have to implement it by taking a separate payment within your application then subscribing them to another plan? I am…
James mcconnon
  • 579
  • 5
  • 23
1
vote
0 answers

Vue.js not updating template when changing child objects

I'm extending laravel spark and wanted to try to validate registration before actually sending it off. All data is handled nicely and correctly from the server but the errors do not pop-up. The code being used for validation is as…
svl_comyoo
  • 11
  • 2
1
vote
1 answer

Installing Laravel Spark issue

I am trying to install Laravel Spark following the Spark installation procedure here: https://spark.laravel.com/docs/1.0/installation I can get the packages and dependencies to install correctly ad without any issues using: spark new sparkapp…
Jerome Erasmus
  • 115
  • 2
  • 11
1
vote
1 answer

Laravel spark cant display the validation errors

I am working on Laravel spark application and the problem is that I can not display the validation errors. Here is the code. Backend: $validator = Validator::make($request->all(), [ 'email' => 'email|unique:users,email', …
naneri
  • 3,771
  • 2
  • 29
  • 53
1
vote
1 answer

Where do I have to write the Laravel Spark application?

I have recently starting developing and app with Laravel Spark. What I am wondering about, is where am I supposed to put the application code? Am I supposed to put it inside the my-project/spark folder, or inside my-project/app (where usually…
naneri
  • 3,771
  • 2
  • 29
  • 53
1
vote
1 answer

Laravel Spark prject links not working

How I create and run laravel spark project: Create project using spark new myproject set all required directory permissions Since I am on live server I hit the public folder within the project. The page display with two buttons 'Login' and…
Shahid Karimi
  • 4,096
  • 17
  • 62
  • 104
1
vote
2 answers

Laravel Spark - Adding additional fields to registration form, but when empty no errors are returned

I'm building my first app with Laravel 5.2 & Laravel Spark. The front end is built using Vue.js I believe and despite adding the following to register-common-form.blade.php:
Andy Holmes
  • 7,817
  • 10
  • 50
  • 83
1
vote
1 answer

Starting with Spark Laravel

I'm trying Spark and, after install it, I have two problems: 1.- When I try 'Log in' and 'Register' buttons, I get this. It is like if my web page with no style. Any idea what I am doing wrong? 2.- On the other hand, I'm following the Quickstart…
JaviZu
  • 487
  • 1
  • 8
  • 20
1
vote
1 answer

sh: 1: laravel: not found

I have registered the spark token and spark has been install on my ubuntu machine,when i run the command spark new application it shows the following error, sh: 1: laravel: not found Downloading Spark... PHP Warning: …
Mohammed Abrar Ahmed
  • 2,290
  • 3
  • 15
  • 33
1
vote
1 answer

Laravel Spark Installation Failed on Globally Using Composer

When I ran the spark installation command to install spark on my global composer directory I got the following error: composer global require "laravel/spark-installer=~1.0" Changed current directory to /Users/sumon/.composer ./composer.json has…
Md Mazedul Islam Khan
  • 5,318
  • 4
  • 40
  • 66
1
vote
2 answers

Dispatching an event in Laravel 5 on model created

I wan to create a Laravel signup system where I would send an email to verify the email once a user has signed up. I tried adding an event dispatched to the created method but I got an error Fatal error: Non-static method…
Bazinga777
  • 5,140
  • 13
  • 53
  • 92
1
vote
1 answer

Error: %1 is not a valid Win32 application

I have just installed a new laravel spark in a new laravel application and am having this error when i run gulp. C:\App>gulp [12:22:52] Using gulpfile ~\App\gulpfile.js [12:22:52] Starting 'default'... [12:22:52] Starting 'sass'... [12:22:52]…
Maurice Kuria
  • 59
  • 4
  • 10
0
votes
0 answers

Does Laravel Spark handle SCA (strong customer authentication)?

I'm over trying to fumble my way through building a payment system for Laravel with Cashier and Stripe. I got basic payments working, but I need to be able to handle payments with Strong Customer Authentication. Spark looks like it would be…
0
votes
1 answer

Composer - installing/updating Laravel classic spark doesn't work

It has been some time since I did work for my Laravel website, which is running the classic Spark plugin (https://spark-classic.laravel.com/). I am trying to set things up in my Windows WSL2 environment but running into some issues when running…
helloworld
  • 223
  • 1
  • 7
  • 24
0
votes
0 answers

Laravel Spark (Next) - Same Handle for multiple Events

Event listener that I am trying to perform the same action for 3 different Laravel Spark Next events. Only the SubscriptionCreated seems to be triggered. namespace App\Listeners; use Spark\Events\SubscriptionCreated; use…
ScraperDave
  • 471
  • 5
  • 8