├── .gitignore ├── LICENSE.txt ├── app ├── Auth │ └── TwoFactor │ │ └── Authenticatable.php ├── Billing │ └── EmailInvoiceNotifier.php ├── Console │ └── Install.php ├── Contracts │ ├── Auth │ │ └── TwoFactor │ │ │ ├── Authenticatable.php │ │ │ └── Provider.php │ ├── Billing │ │ └── InvoiceNotifier.php │ └── Repositories │ │ ├── TeamRepository.php │ │ └── UserRepository.php ├── Events │ ├── Team │ │ └── Deleting.php │ └── User │ │ ├── Event.php │ │ ├── ProfileUpdated.php │ │ ├── Registered.php │ │ ├── Subscribed.php │ │ ├── SubscriptionCancelled.php │ │ ├── SubscriptionPlanChanged.php │ │ └── SubscriptionResumed.php ├── Http │ ├── Controllers │ │ ├── API │ │ │ ├── InvitationController.php │ │ │ ├── SubscriptionController.php │ │ │ ├── TeamController.php │ │ │ └── UserController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── PasswordController.php │ │ ├── Controller.php │ │ ├── Settings │ │ │ ├── DashboardController.php │ │ │ ├── InvitationController.php │ │ │ ├── ProfileController.php │ │ │ ├── SecurityController.php │ │ │ ├── SubscriptionController.php │ │ │ └── TeamController.php │ │ ├── Stripe │ │ │ └── WebhookController.php │ │ └── TermsController.php │ └── routes.php ├── InteractsWithSparkHooks.php ├── Providers │ ├── AppServiceProvider.php │ └── SparkServiceProvider.php ├── Repositories │ ├── TeamRepository.php │ └── UserRepository.php ├── Services │ └── Auth │ │ └── TwoFactor │ │ └── Authy.php ├── Spark.php ├── Subscriptions │ ├── Coupon.php │ ├── Plan.php │ └── Plans.php ├── Teams │ ├── CanJoinTeams.php │ ├── Invitation.php │ └── Team.php └── Ux │ └── Settings │ ├── DashboardTabs.php │ ├── Tab.php │ ├── Tabs.php │ └── TeamTabs.php ├── composer.json ├── readme.md └── resources ├── assets ├── js │ ├── auth │ │ └── registration │ │ │ ├── simple.js │ │ │ └── subscription.js │ ├── common │ │ └── errors.js │ ├── core │ │ ├── components.js │ │ └── dependencies.js │ ├── nav.js │ ├── package.json │ ├── settings │ │ ├── dashboard.js │ │ ├── dashboard │ │ │ ├── profile.js │ │ │ ├── security │ │ │ │ ├── password.js │ │ │ │ └── two-factor.js │ │ │ ├── subscription.js │ │ │ └── teams.js │ │ ├── team.js │ │ └── team │ │ │ ├── membership.js │ │ │ ├── membership │ │ │ └── edit-team-member.js │ │ │ └── owner.js │ └── spark.js └── sass │ ├── components │ ├── settings.scss │ ├── splash.scss │ ├── subscription.scss │ └── terms.scss │ ├── elements │ ├── buttons.scss │ ├── forms.scss │ ├── modals.scss │ ├── nav.scss │ ├── panels.scss │ ├── tables.scss │ └── tooltips.scss │ └── spark.scss ├── stubs ├── app │ ├── Http │ │ ├── Middleware │ │ │ ├── Authenticate.php │ │ │ └── VerifyCsrfToken.php │ │ └── routes.php │ ├── Providers │ │ └── SparkServiceProvider.php │ ├── Team.php │ └── User.php ├── config │ └── app.php ├── database │ └── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ └── 2014_10_12_200000_create_teams_tables.php ├── gulpfile.js ├── package.json └── resources │ └── assets │ ├── js │ ├── app.js │ └── spark │ │ └── components.js │ └── sass │ └── app.scss └── views ├── auth ├── authenticate.blade.php ├── password │ ├── email.blade.php │ └── reset.blade.php ├── registration │ ├── simple.blade.php │ ├── simple │ │ └── basics.blade.php │ ├── subscription.blade.php │ └── subscription │ │ ├── basics.blade.php │ │ ├── billing.blade.php │ │ ├── coupon.blade.php │ │ ├── inspiration.blade.php │ │ ├── invitation.blade.php │ │ └── plans │ │ ├── plan.blade.php │ │ ├── selected.blade.php │ │ └── selector.blade.php └── token.blade.php ├── common ├── errors.blade.php └── footer.blade.php ├── emails ├── auth │ └── password │ │ └── email.blade.php ├── billing │ └── invoice.blade.php └── team │ └── invitations │ ├── existing.blade.php │ └── new.blade.php ├── home.blade.php ├── layouts ├── app.blade.php ├── common │ └── head.blade.php └── spark.blade.php ├── nav ├── app │ └── dropdown.blade.php ├── authenticated.blade.php ├── guest.blade.php └── spark │ └── dropdown.blade.php ├── scripts └── globals.blade.php ├── settings ├── dashboard.blade.php ├── tabs │ ├── profile.blade.php │ ├── security.blade.php │ ├── security │ │ ├── password.blade.php │ │ └── two-factor.blade.php │ ├── subscription.blade.php │ ├── subscription │ │ ├── cancel.blade.php │ │ ├── card.blade.php │ │ ├── change.blade.php │ │ ├── coupon.blade.php │ │ ├── invoices │ │ │ ├── history.blade.php │ │ │ └── vat.blade.php │ │ ├── modals │ │ │ ├── cancel.blade.php │ │ │ ├── change.blade.php │ │ │ └── change │ │ │ │ ├── plan.blade.php │ │ │ │ └── selector.blade.php │ │ ├── resume.blade.php │ │ ├── subscribe.blade.php │ │ └── subscribe │ │ │ ├── plan.blade.php │ │ │ └── selector.blade.php │ └── teams.blade.php ├── team.blade.php └── team │ └── tabs │ ├── membership.blade.php │ ├── membership │ └── modals │ │ └── edit-team-member.blade.php │ └── owner.blade.php ├── terms.blade.php └── welcome.blade.php /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /vendor 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /app/Auth/TwoFactor/Authenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Auth/TwoFactor/Authenticatable.php -------------------------------------------------------------------------------- /app/Billing/EmailInvoiceNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Billing/EmailInvoiceNotifier.php -------------------------------------------------------------------------------- /app/Console/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Console/Install.php -------------------------------------------------------------------------------- /app/Contracts/Auth/TwoFactor/Authenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Contracts/Auth/TwoFactor/Authenticatable.php -------------------------------------------------------------------------------- /app/Contracts/Auth/TwoFactor/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Contracts/Auth/TwoFactor/Provider.php -------------------------------------------------------------------------------- /app/Contracts/Billing/InvoiceNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Contracts/Billing/InvoiceNotifier.php -------------------------------------------------------------------------------- /app/Contracts/Repositories/TeamRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Contracts/Repositories/TeamRepository.php -------------------------------------------------------------------------------- /app/Contracts/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Contracts/Repositories/UserRepository.php -------------------------------------------------------------------------------- /app/Events/Team/Deleting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/Team/Deleting.php -------------------------------------------------------------------------------- /app/Events/User/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/User/Event.php -------------------------------------------------------------------------------- /app/Events/User/ProfileUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/User/ProfileUpdated.php -------------------------------------------------------------------------------- /app/Events/User/Registered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/User/Registered.php -------------------------------------------------------------------------------- /app/Events/User/Subscribed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/User/Subscribed.php -------------------------------------------------------------------------------- /app/Events/User/SubscriptionCancelled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/User/SubscriptionCancelled.php -------------------------------------------------------------------------------- /app/Events/User/SubscriptionPlanChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/User/SubscriptionPlanChanged.php -------------------------------------------------------------------------------- /app/Events/User/SubscriptionResumed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Events/User/SubscriptionResumed.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/InvitationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/API/InvitationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/SubscriptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/API/SubscriptionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/API/TeamController.php -------------------------------------------------------------------------------- /app/Http/Controllers/API/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/API/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Settings/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/InvitationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Settings/InvitationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Settings/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Settings/SecurityController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/SubscriptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Settings/SubscriptionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Settings/TeamController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Stripe/WebhookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/Stripe/WebhookController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TermsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/Controllers/TermsController.php -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Http/routes.php -------------------------------------------------------------------------------- /app/InteractsWithSparkHooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/InteractsWithSparkHooks.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SparkServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Providers/SparkServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/TeamRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Repositories/TeamRepository.php -------------------------------------------------------------------------------- /app/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Repositories/UserRepository.php -------------------------------------------------------------------------------- /app/Services/Auth/TwoFactor/Authy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Services/Auth/TwoFactor/Authy.php -------------------------------------------------------------------------------- /app/Spark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Spark.php -------------------------------------------------------------------------------- /app/Subscriptions/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Subscriptions/Coupon.php -------------------------------------------------------------------------------- /app/Subscriptions/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Subscriptions/Plan.php -------------------------------------------------------------------------------- /app/Subscriptions/Plans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Subscriptions/Plans.php -------------------------------------------------------------------------------- /app/Teams/CanJoinTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Teams/CanJoinTeams.php -------------------------------------------------------------------------------- /app/Teams/Invitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Teams/Invitation.php -------------------------------------------------------------------------------- /app/Teams/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Teams/Team.php -------------------------------------------------------------------------------- /app/Ux/Settings/DashboardTabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Ux/Settings/DashboardTabs.php -------------------------------------------------------------------------------- /app/Ux/Settings/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Ux/Settings/Tab.php -------------------------------------------------------------------------------- /app/Ux/Settings/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Ux/Settings/Tabs.php -------------------------------------------------------------------------------- /app/Ux/Settings/TeamTabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/app/Ux/Settings/TeamTabs.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/composer.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/auth/registration/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/auth/registration/simple.js -------------------------------------------------------------------------------- /resources/assets/js/auth/registration/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/auth/registration/subscription.js -------------------------------------------------------------------------------- /resources/assets/js/common/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/common/errors.js -------------------------------------------------------------------------------- /resources/assets/js/core/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/core/components.js -------------------------------------------------------------------------------- /resources/assets/js/core/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/core/dependencies.js -------------------------------------------------------------------------------- /resources/assets/js/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/nav.js -------------------------------------------------------------------------------- /resources/assets/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/package.json -------------------------------------------------------------------------------- /resources/assets/js/settings/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/dashboard.js -------------------------------------------------------------------------------- /resources/assets/js/settings/dashboard/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/dashboard/profile.js -------------------------------------------------------------------------------- /resources/assets/js/settings/dashboard/security/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/dashboard/security/password.js -------------------------------------------------------------------------------- /resources/assets/js/settings/dashboard/security/two-factor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/dashboard/security/two-factor.js -------------------------------------------------------------------------------- /resources/assets/js/settings/dashboard/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/dashboard/subscription.js -------------------------------------------------------------------------------- /resources/assets/js/settings/dashboard/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/dashboard/teams.js -------------------------------------------------------------------------------- /resources/assets/js/settings/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/team.js -------------------------------------------------------------------------------- /resources/assets/js/settings/team/membership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/team/membership.js -------------------------------------------------------------------------------- /resources/assets/js/settings/team/membership/edit-team-member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/team/membership/edit-team-member.js -------------------------------------------------------------------------------- /resources/assets/js/settings/team/owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/settings/team/owner.js -------------------------------------------------------------------------------- /resources/assets/js/spark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/js/spark.js -------------------------------------------------------------------------------- /resources/assets/sass/components/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/components/settings.scss -------------------------------------------------------------------------------- /resources/assets/sass/components/splash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/components/splash.scss -------------------------------------------------------------------------------- /resources/assets/sass/components/subscription.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/components/subscription.scss -------------------------------------------------------------------------------- /resources/assets/sass/components/terms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/components/terms.scss -------------------------------------------------------------------------------- /resources/assets/sass/elements/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/elements/buttons.scss -------------------------------------------------------------------------------- /resources/assets/sass/elements/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/elements/forms.scss -------------------------------------------------------------------------------- /resources/assets/sass/elements/modals.scss: -------------------------------------------------------------------------------- 1 | .modal-title { 2 | font-weight: 300; 3 | } 4 | -------------------------------------------------------------------------------- /resources/assets/sass/elements/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/elements/nav.scss -------------------------------------------------------------------------------- /resources/assets/sass/elements/panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/elements/panels.scss -------------------------------------------------------------------------------- /resources/assets/sass/elements/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/elements/tables.scss -------------------------------------------------------------------------------- /resources/assets/sass/elements/tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/elements/tooltips.scss -------------------------------------------------------------------------------- /resources/assets/sass/spark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/assets/sass/spark.scss -------------------------------------------------------------------------------- /resources/stubs/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /resources/stubs/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /resources/stubs/app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/app/Http/routes.php -------------------------------------------------------------------------------- /resources/stubs/app/Providers/SparkServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/app/Providers/SparkServiceProvider.php -------------------------------------------------------------------------------- /resources/stubs/app/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/app/Team.php -------------------------------------------------------------------------------- /resources/stubs/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/app/User.php -------------------------------------------------------------------------------- /resources/stubs/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/config/app.php -------------------------------------------------------------------------------- /resources/stubs/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /resources/stubs/database/migrations/2014_10_12_200000_create_teams_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/database/migrations/2014_10_12_200000_create_teams_tables.php -------------------------------------------------------------------------------- /resources/stubs/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/gulpfile.js -------------------------------------------------------------------------------- /resources/stubs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/package.json -------------------------------------------------------------------------------- /resources/stubs/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/stubs/resources/assets/js/spark/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/resources/assets/js/spark/components.js -------------------------------------------------------------------------------- /resources/stubs/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/stubs/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/views/auth/authenticate.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/authenticate.blade.php -------------------------------------------------------------------------------- /resources/views/auth/password/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/password/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/password/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/password/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/simple.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/simple.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/simple/basics.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/simple/basics.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/basics.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/basics.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/billing.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/billing.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/coupon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/coupon.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/inspiration.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/inspiration.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/invitation.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/plans/plan.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/plans/plan.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/plans/selected.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/plans/selected.blade.php -------------------------------------------------------------------------------- /resources/views/auth/registration/subscription/plans/selector.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/registration/subscription/plans/selector.blade.php -------------------------------------------------------------------------------- /resources/views/auth/token.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/auth/token.blade.php -------------------------------------------------------------------------------- /resources/views/common/errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/common/errors.blade.php -------------------------------------------------------------------------------- /resources/views/common/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/common/footer.blade.php -------------------------------------------------------------------------------- /resources/views/emails/auth/password/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/emails/auth/password/email.blade.php -------------------------------------------------------------------------------- /resources/views/emails/billing/invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/emails/billing/invoice.blade.php -------------------------------------------------------------------------------- /resources/views/emails/team/invitations/existing.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/emails/team/invitations/existing.blade.php -------------------------------------------------------------------------------- /resources/views/emails/team/invitations/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/emails/team/invitations/new.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/common/head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/layouts/common/head.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/spark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/layouts/spark.blade.php -------------------------------------------------------------------------------- /resources/views/nav/app/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/nav/app/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/nav/authenticated.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/nav/authenticated.blade.php -------------------------------------------------------------------------------- /resources/views/nav/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/nav/guest.blade.php -------------------------------------------------------------------------------- /resources/views/nav/spark/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/nav/spark/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/scripts/globals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/scripts/globals.blade.php -------------------------------------------------------------------------------- /resources/views/settings/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/profile.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/security.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/security.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/security/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/security/password.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/security/two-factor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/security/two-factor.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/cancel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/cancel.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/card.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/change.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/change.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/coupon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/coupon.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/invoices/history.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/invoices/history.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/invoices/vat.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/invoices/vat.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/modals/cancel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/modals/cancel.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/modals/change.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/modals/change.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/modals/change/plan.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/modals/change/plan.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/modals/change/selector.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/modals/change/selector.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/resume.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/resume.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/subscribe.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/subscribe.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/subscribe/plan.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/subscribe/plan.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/subscription/subscribe/selector.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/subscription/subscribe/selector.blade.php -------------------------------------------------------------------------------- /resources/views/settings/tabs/teams.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/tabs/teams.blade.php -------------------------------------------------------------------------------- /resources/views/settings/team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/team.blade.php -------------------------------------------------------------------------------- /resources/views/settings/team/tabs/membership.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/team/tabs/membership.blade.php -------------------------------------------------------------------------------- /resources/views/settings/team/tabs/membership/modals/edit-team-member.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/team/tabs/membership/modals/edit-team-member.blade.php -------------------------------------------------------------------------------- /resources/views/settings/team/tabs/owner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/settings/team/tabs/owner.blade.php -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/terms.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastashake08/laravel-spark-archive/HEAD/resources/views/welcome.blade.php --------------------------------------------------------------------------------