Laravel Jetstream is a beautifully designed application scaffolding for Laravel.

Overview

Logo Laravel Jetstream

Build Status Total Downloads Latest Stable Version License

Introduction

Laravel Jetstream is a beautifully designed application scaffolding for Laravel. Jetstream provides the perfect starting point for your next Laravel application and includes login, registration, email verification, two-factor authentication, session management, API support via Laravel Sanctum, and optional team management.

Jetstream is designed using Tailwind CSS and offers your choice of Livewire or Inertia scaffolding.

Official Documentation

Documentation for Jetstream can be found on the Jetstream website.

Contributing

Thank you for considering contributing to Jetstream! You can read the contribution guide here.

Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

Laravel Jetstream is open-sourced software licensed under the MIT license.

Comments
  • [2.x]  Socialite Support

    [2.x] Socialite Support

    This PR adds optional support for Laravel Socialite and all Socialite support providers, via feature flags. Support is available for both InertiaJS and Livewire. See #214

    To get started with this PR, create a fresh Laravel project (without --jet) and update your composer.json to include the repository following and require the feature branch.

    composer require laravel/jetstream:dev-feature-jetstream-support
    

    You may then run the Jetstream install command, specifying socialite support:

    php artisan jetstream:install {stack} --socialite
    

    You may remove support for Socialite by commenting out the feature in jetstream.php

    'features' => [
        // Features::socialite(['facebook' => true, 'github' => true]),
    ],
    

    You'll need to follow the instructions for configuring socialite providers to ensure you're application will support this feature.

    Once you're all setup, you should be able to see your providers in your login and register routes views:

    Screenshot 2020-11-10 at 21 06 36

    Existing users that have signed up using email and password can connect social accounts in their profile settings, as well as remove them:

    Screenshot 2020-11-13 at 17 04 10

    opened by joelbutcher 107
  • OAuth login / Socialite

    OAuth login / Socialite

    Besides normal login and two-factor, it might be nice to add OAuth login. Because Socialite is a first-party package, this could make sense to add by default.

    Ideas:

    • Configure socialite providers, eg Google, Facebook etc
    • Register with Socialite (define the fields)
    • ~Whitelist~ Allowlist registration for certain domains (eg. let everyone inside the company register, nobody else)
    • Login with Socialite (perhaps optionally disable normal login)
    • Connect/disconnect your account with other accounts on your profile page
    • Possibility to skip 2FA if coming from Socialite (because other accounts could handle it)

    What would be needed

    • Additional table with socialite ids
    • UI for login/connect/register
    • Registering of socialite / mapping of fields
    enhancement 
    opened by barryvdh 45
  • Livewire is not defined after install

    Livewire is not defined after install

    • Jetstream Version: 1.0
    • Laravel Version: 8.0
    • PHP Version: 7.4.3
    • Database Driver & Version: MySQL 5.7
    • Node version: latest

    Description:

    After installing using the new Laravel installer, data is not being reflected in the UI for /user/profile

    After publishing all Jetstream assets I tried to see where this may be happening but it wasn't clear. However, I am getting the console error: Uncaught ReferenceError: Livewire is not defined at profile:626. All npm assets have been installed and everything else, including dropdowns and registration works.

    If it helps in anyway, I am also using Vessel for a docker environment at the moment, and that is using version: 5.0

    Steps To Reproduce:

    • Create a new Laravel install: laravel new app --jet --stack=livewire
    • cd app
    • npm i
    • Register a new user
    • Open console and error is displayed.
    opened by JustSteveKing 37
  • Enter 2FA input token before save model

    Enter 2FA input token before save model

    If you enable 2FA and "forget" to scan the QR code, the user can't login anymore :)

    Normal after you scan your 2FA code you have to enter it again on the page before the two_factor_secret is saved into the user model, this way you kinda ensure you registered your login in your 2FA application.

    enhancement 
    opened by schmeits 23
  • [2.x] Inertia: Automatically publish & register Inertia Middleware

    [2.x] Inertia: Automatically publish & register Inertia Middleware

    Solves #326

    This PR automatically publishes and registers the new HandleInertiaRequests Inertia Middleware with the Http Kernel, to enable automatic asset versioning (cache busting) and error sharing as of default. To take full advantage of this, it also enables versioning as of default in the webpack.mix.js.

    Additionally, because Jetstream automatically registers the ShareInertiaData middleware on the 'web' group as priority middleware, this PR also adds logic to ensure the HandleInertiaRequests middleware always runs directly after it when it exists. This gives the user the ability to overwrite the Inertia built-in defaults (such as the user key) if they want to.

    Finally, because this Middleware will exist entirely in userland, it allows the user to change it in to any configuration they want, including disabling it entirely.

    opened by claudiodekker 22
  • [2.x] Only update user model if two factor confirmation has truly started

    [2.x] Only update user model if two factor confirmation has truly started

    The Inertia stack is using a session var based workflow to determine if the user has started confirming two factor auth activation. If the user aborts confirming the two factor activation, for example by reloading the page, the two factor model-attributes are being reset accordingly. Such as two_factor_secret and others, which is working fine in the current implementation.

    But, on every /user/profile visit or refresh the two factor model-attributes are reset causing unnecessary database updates, and also causing for example re-indexing of the whole model when Laravel scout is used, as long as two factor is not activated. This is because the current implementation does not check if the two factor confirmation has truly started.

    With this PR the session variable 'two_factor_confirming_at' is being checked if present in the 'neverFinishedConfirmingTwoFactorAuthentication' method, resulting two factor model-attributes resets only if the two factor auth activation has been started by the user. If the user has not started the two factor auth activation, then the model-attributes are not reset.

    The livewire stack is not using a session based workflow which is the reason why there are no updates and test required.

    opened by hopkins385 21
  • [2.x] Change $page.user to $page.auth.user #317

    [2.x] Change $page.user to $page.auth.user #317

    • Changing $page.user to $page.auth.user makes authenticated user consistent with intertia.js examples.
    • Prevents mixing the auth.user with a user object returned from backend.
    opened by drjdr 20
  • Inertia - Expired session causes the website to be displayed in a modal

    Inertia - Expired session causes the website to be displayed in a modal

    • Jetstream Version: 1.0.2
    • Laravel Version: 8.0.1
    • PHP Version: 7.4.7
    • Database Driver & Version: mysql Ver 14.14 Distrib 5.7.29, for osx10.15
    • Stack: Inertia

    Description:

    When the session expires the user doesn't get redirected to the login page, but instead this page is shown as a modal. After logging in within the modal the website is shown inside the modal.

    Steps To Reproduce:

    • Create a new Laravel + Jetstream project using laravel new saas --jet --stack=inertia --teams
    • Register an account
    • When logged in, open your preferred devtools and delete the laravel_session cookie
    • Click on a link, for example in the user-dropdown click on "Profile"
    • A modal is now shown with the login page
    • When logging in within the modal the site will be displayed inside the modal
    bug 
    opened by RobertBoes 20
  • Auth::login and Auth::loginUsingId causes log out

    Auth::login and Auth::loginUsingId causes log out

    • Jetstream Version: 2.6.7
    • Jetstream Stack: Inertia
    • Uses Teams: no
    • Laravel Version: 9.4.1
    • PHP Version: 8.1.3
    • Database Driver & Version: MySQL v8.0.28 for macos12.2 on arm64 (Homebrew)

    Description:

    Auth::login and Auth::loginUsingId causes user to be logged out

    Steps To Reproduce:

    • Install fresh copy of Laravel 9 w/ Jetstream + Inertia
    • Create a route to switch users with Auth::login($user) or Auth::loginUsingId($id)
    • Create 2 user accounts
    • Log in as user 1
    • Try using the route to login as user 2
    • Return to the dashboard
    • You are logged out instead of being logged in as the other user

    https://github.com/fylzero/bug-report

    needs more info 
    opened by fylzero 19
  • Problems installing Jetstram with Livewire

    Problems installing Jetstram with Livewire

    • Jetstream Version: 1.6.5
    • Jetstream Stack: Livewire
    • Laravel Version: 8.20.1
    • PHP Version: 7.3

    I have troubles when installing Jetstream.

    First:

    composer require laravel/jetstream
    

    This works as expected.

    Then:

    php artisan jetstream:install livewire
    

    Output:

    Migration created successfully!
    
    ErrorException
    
    file_get_contents(/Users/xxxx/xxxx/xxxx/xxxx.net/.env.example): failed to open stream: No such file or directory
    
    at vendor/laravel/jetstream/src/Console/InstallCommand.php:516
    

    Then I try to uninstall Jetstream:

    composer remove laravel/jetstream
    

    The uninstaller runs, at the end I see this output:

    ...
    
    Generating optimized autoload files
    > Illuminate\Foundation\ComposerScripts::postAutoloadDump
    > @php artisan package:discover --ansi
    
    In fortify.php line 134:
                                              
    Class 'Laravel\Fortify\Features' not found  
                                              
    Script @php artisan package:discover --ansi handling the post-autoload-dump event returned with error code 1
    
    opened by danielschweiger 17
  • [2.x] Inertia.js: Add support for all Jetstream-provided views.

    [2.x] Inertia.js: Add support for all Jetstream-provided views.

    This PR adds Inertia variants for all Jetstream included views. This allows a more native Inertia experience for users of this stack, and solves several issues and difficulties that makes for an all-in-all smoother experience.

    For example, some Jetstream users have been asking questions on our Discord regarding difficulties they're experiencing with getting Jetstream to play well with Inertia. Specifically, the most common issue is when a session expires, as the user then gets redirected to the login page, and because that login page is a Blade view, Inertia renders it in a so-called 'error modal'.

    To solve or prevent this, users should instead use Inertia for their login pages as well, and while some have gotten to the point where they're attempting to (re)configure Fortify to use Inertia views instead, this too isn't the most straight-forward thing to do.

    opened by claudiodekker 16
  • Opt-in dark mode support

    Opt-in dark mode support

    This PR introduces opt-in dark mode support to Jetstream, borrowed from @jessarcher PR on Breeze

    php artisan jetstream:install {stack} --dark
    

    Following the previous mentioned PR, the dark mode classes will be stripped unless dark mode is enabled. When installing livewire stack without dark mode, the components will be published in order to strip the dark classes from them.

    Screenshots

    |Light|Dark| |-----|-----| |register-light|register-dark| |tos-light|tos-dark| |privacy-policy-light|privacy-policy-light dark| |login-light|login-dark| |reset-password-light|reset-password-dark| |dashboard-light|dashboard-dark| |profile-light|profile-dark| |confirm-password-modal-light|confirm-password-modal-dark| |log-out-sessions-light|log-out-sessions-dark| |delete-account-light|delete-account-dark| |create-team-light|create-team-dark| |edit-team-light|edit-team-dark| |delete-team-member-light|delete-team-member-dark| |delete-team-light|delete-team-dark| |manage-role-light|manage-role-dark| |api-tokens-light|api-tokens-dark| |token-confirmation-light|token-confirmation-dark| |token-delete-light|token-delete-dark| |edit-token-light|edit-token-dark| |active-user-menu-light|active-user-menu-dark| |team-menu-light|team-menu-dark| |focus-menu-button-light|focus-menu-button-dark| |responsive-menu-light|responsive-menu-dark|

    Notes

    • I copied the styles of inputs & buttons from Breeze PR, which will change colors from blue to indigo, happy to change back all to blue if this presents a problem.
    • I used Livewire stack as a basis and then copied to Vue, while doing this I found minor inconsistencies between the stacks which are now improved. This includes the caret icon in the user's dropdown and some minor visual differences - keep this in mind when reviewing the diff.
    • I've included the fix focus styling in this and included the dark mode options.
    opened by fotrino 0
Releases(v2.14.0)
  • v2.14.0(Jan 3, 2023)

    Changed

    • Update to Heroicons v2 by @driesvints in https://github.com/laravel/jetstream/pull/1200
    • Uses PHP Native Type Declarations 🐘 by @nunomaduro in https://github.com/laravel/jetstream/pull/1175

    Fixed

    • Add focus styling for settings dropdown trigger button by @thema-d in https://github.com/laravel/jetstream/pull/1206
    • Fix the order of the v-if attribute. by @milorojas in https://github.com/laravel/jetstream/pull/1208
    Source code(tar.gz)
    Source code(zip)
  • v2.13.1(Dec 20, 2022)

    Fixed

    • Fixed and issue causing overflow in ApiTokenManager page on mobile devices. by @ravibpatel in https://github.com/laravel/jetstream/pull/1198
    Source code(tar.gz)
    Source code(zip)
  • v2.13.0(Dec 15, 2022)

    Added

    • Vite 4 support by @timacdonald in https://github.com/laravel/jetstream/pull/1193

    Changed

    • Redirect to the fortify configured logout redirect after deleting user by @riasvdv in https://github.com/laravel/jetstream/pull/1191
    Source code(tar.gz)
    Source code(zip)
  • v2.12.6(Dec 6, 2022)

    Changed

    • Use x-Focus Alpine JS plugin for Livewire stack modal by @x7ryan in https://github.com/laravel/jetstream/pull/1186
    • Use Default NPM Package Manager of User if Lock File Exists In Base Path by @andrewdwallo in https://github.com/laravel/jetstream/pull/1187
    Source code(tar.gz)
    Source code(zip)
  • v2.12.5(Oct 26, 2022)

  • v2.12.4(Oct 25, 2022)

    Changed

    • Register: add required to terms checkbox by @A-w-x in https://github.com/laravel/jetstream/pull/1158
    • Added missing localization in logout-other-browser-sessions-form.blade.php by @JakyeRU in https://github.com/laravel/jetstream/pull/1163
    • Vite preloading by @timacdonald in https://github.com/laravel/jetstream/pull/1169
    Source code(tar.gz)
    Source code(zip)
  • v2.12.3(Sep 27, 2022)

  • v2.12.2(Sep 20, 2022)

  • v2.12.1(Sep 13, 2022)

    Changed

    • Call storage:link on install by @jessarcher in https://github.com/laravel/jetstream/pull/1133
    • Remove redundant remove-member link by @devnll in https://github.com/laravel/jetstream/pull/1135
    Source code(tar.gz)
    Source code(zip)
  • v2.12.0(Sep 6, 2022)

  • v2.11.2(Aug 23, 2022)

    Changed

    • Check current model supports HasTeams before trying to access team information. by @crynobone in https://github.com/laravel/jetstream/pull/1120
    • Update Register.vue by @JoshSalway in https://github.com/laravel/jetstream/pull/1127
    Source code(tar.gz)
    Source code(zip)
  • v2.11.1(Aug 16, 2022)

    Changed

    • Style improvements by @jessarcher in https://github.com/laravel/jetstream/pull/1116
    • Install NPM dependencies and build assets by @jessarcher in https://github.com/laravel/jetstream/pull/1119
    • Update inertiajs/inertia-laravel to ^0.6.3 by @ashleyshenton in https://github.com/laravel/jetstream/pull/1122
    • Display validation errors alongside fields in the Inertia stack by @jessarcher in https://github.com/laravel/jetstream/pull/1123
    Source code(tar.gz)
    Source code(zip)
  • v2.11.0(Aug 9, 2022)

    Changed

    • Update install command output to display vite build command by @RhysLees in https://github.com/laravel/jetstream/pull/1109
    • Validate the stack argument by @jessarcher in https://github.com/laravel/jetstream/pull/1113
    • Move Jetstream components to Components directory by @jessarcher in https://github.com/laravel/jetstream/pull/1110
    Source code(tar.gz)
    Source code(zip)
  • v2.10.3(Aug 2, 2022)

  • v2.10.2(Jul 26, 2022)

    Changed

    • Change position of Livewire Style by @syntafin in https://github.com/laravel/jetstream/pull/1093
    • Skip two factor authentication tests when the feature is disabled by @mbabker in https://github.com/laravel/jetstream/pull/1095
    • Improves console output by @nunomaduro in https://github.com/laravel/jetstream/pull/1097
    Source code(tar.gz)
    Source code(zip)
  • v2.10.1(Jul 19, 2022)

  • v2.10.0(Jul 13, 2022)

    Changed

    • Add default view / routes reloading to jetstream stacks by @timacdonald in https://github.com/laravel/jetstream/pull/1080
    • Update SSR directory by @jessarcher in https://github.com/laravel/jetstream/pull/1084
    • Add livewire component paths to default refresh paths for livewire stack by @timacdonald in https://github.com/laravel/jetstream/pull/1081

    Removed

    • Drop Laravel 8.x support (and PHP < 8) by @timacdonald in https://github.com/laravel/jetstream/pull/1082
    Source code(tar.gz)
    Source code(zip)
  • v2.9.0(Jun 28, 2022)

    Added

    • Vite by @jessarcher in https://github.com/laravel/jetstream/pull/1068

    Fixed

    • Fix TailwindCSS first party TypeScript types weren't working right by @geisi in https://github.com/laravel/jetstream/pull/1074
    • Bump @tailwindcss/forms by @timacdonald in https://github.com/laravel/jetstream/pull/1076
    • Fix ziggy location instead of base url by @matthieumota in https://github.com/laravel/jetstream/pull/1078
    Source code(tar.gz)
    Source code(zip)
  • v2.8.5(Jun 21, 2022)

    Changed

    • Add .vue extension to imports by @SamuelMwangiW in https://github.com/laravel/jetstream/pull/1067
    • Bump TailwindCSS to 3.1 by @geisi in https://github.com/laravel/jetstream/pull/1066

    Fixed

    • Fix Inertia SSR usage with Ziggy route function in setup() by @prestonholt in https://github.com/laravel/jetstream/pull/1069
    Source code(tar.gz)
    Source code(zip)
  • v2.8.4(Jun 7, 2022)

    Changed

    • Skip tests for team invitations if disabled by @jradtilbrook in https://github.com/laravel/jetstream/pull/1063
    • Display available stack options by @jessarcher in https://github.com/laravel/jetstream/pull/1062
    Source code(tar.gz)
    Source code(zip)
  • v2.8.3(May 31, 2022)

    Changed

    • Switch to ESM imports by @jessarcher in https://github.com/laravel/jetstream/pull/1059
    • Bump tailwindcss/forms to 0.5.0 by @driesvints in https://github.com/laravel/jetstream/pull/1061
    • Simplify Tailwind installation by @jessarcher in https://github.com/laravel/jetstream/pull/1060
    Source code(tar.gz)
    Source code(zip)
  • v2.8.2(May 24, 2022)

    Fixed

    • Fixed an issue causing warning when clicking on Manage Permissions or Delete on created token. by @ravibpatel in https://github.com/laravel/jetstream/pull/1056
    Source code(tar.gz)
    Source code(zip)
  • v2.8.1(May 13, 2022)

  • v2.8.0(May 10, 2022)

  • v2.7.5(Apr 27, 2022)

  • v2.7.4(Apr 19, 2022)

  • v2.7.3(Apr 10, 2022)

    Fixed

    • Fix parse error caused by alpine shorthand on dynamic-component by @authanram in https://github.com/laravel/jetstream/pull/1032
    • Fix error handling during 2FA confirmation by @ManuelLeiner in https://github.com/laravel/jetstream/pull/1030
    • Fix if user logs out when viewing the 2FA Form by @jjhamkuijpers in https://github.com/laravel/jetstream/pull/1034
    Source code(tar.gz)
    Source code(zip)
  • v2.7.2(Apr 5, 2022)

  • v2.7.1(Apr 5, 2022)

  • v2.7.0(Mar 29, 2022)

    Added

    • Confirm 2FA when enabling by @driesvints & @taylorotwell in https://github.com/laravel/jetstream/pull/992
    • 2FA Setup Key by @ps-sean in https://github.com/laravel/jetstream/pull/1008
    • Add Inertia SSR Support by @xiCO2k in https://github.com/laravel/jetstream/pull/1012

    Changed

    • Match Inertia Scaffolding with Livewire in regards to AuthenticateSessions by @taylorotwell in https://github.com/laravel/jetstream/pull/1003
    • Change Inertia Stubs to Composition API by @xiCO2k in https://github.com/laravel/jetstream/pull/1001
    • Remove return in ensurePasswordIsConfirmed by @driesvints in https://github.com/laravel/jetstream/pull/1006
    • Use .alias method from Mix by @xiCO2k in https://github.com/laravel/jetstream/pull/1009

    Fixed

    • Fix stub tests by @driesvints in https://github.com/laravel/jetstream/pull/1014
    • Prioritize 'accepted' validation rule for terms checkbox in CreateNewUserWithTeams.php by @ChrisRiddell in https://github.com/laravel/jetstream/pull/1019
    Source code(tar.gz)
    Source code(zip)
Owner
The Laravel Framework
The Laravel Framework
Specially customized Laravel jetstream's scaffolding for Frest html + laravel admin Template

frest-html-laravel-jetstream Specially customized Laravel jetstream's scaffolding for Frest html + laravel admin Template. It'll not work with any oth

PIXINVENT CREATIVE STUDIO 0 Apr 5, 2022
Jetstrap is a lightweight laravel 8 package that focuses on the VIEW side of Jetstream / Breeze package installed in your Laravel application

A Laravel 8 package to easily switch TailwindCSS resources generated by Laravel Jetstream and Breeze to Bootstrap 4.

null 686 Dec 28, 2022
A quiz application with laravel 8, spatie permissions, livewire, jetstream, chartjs, tailwindcss and more!

Todo Currently busy with some other important things, will definately would like to imporove the app with 1. Multiple choices selection and mapping to

Baig 67 Nov 21, 2022
Foreman is a Laravel scaffolding application that automates common tasks you typically perform with each new Laravel app you create

Foreman is a Laravel scaffolding application that automates common tasks you typically perform with each new Laravel app you create. The directives you want Forman to perform are outlined in a JSON based template file.

Indatus 145 Apr 13, 2022
List of 77 languages for Laravel Framework 4, 5, 6, 7 and 8, Laravel Jetstream , Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova and Laravel Spark.

Laravel Lang In this repository, you can find the lang files for the Laravel Framework 4/5/6/7/8, Laravel Jetstream , Laravel Fortify, Laravel Cashier

Laravel Lang 6.9k Jan 2, 2023
A simple Socialite implementation for Laravel Jetstream.

Introduction Socialstream is a third-party package for Laravel Jetstream. It replaces the published authentication and profile scaffolding provided by

Joel Butcher 334 Jan 2, 2023
Utilizamos select2 con MySQL - Laravel 8 - livewire y jetstream

About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experie

Informática DP 1 Jan 4, 2022
Laravel UI, Auth, & CRUD scaffolding package using Bootstrap & Livewire.

bastinald/ux Laravel UI, Auth, & CRUD scaffolding package using Bootstrap & Livewire. Features Automatic migrations Automatic routing Automatic passwo

null 33 Nov 26, 2022
A Laravel starter kit with auth scaffolding using Livewire & Bootstrap.

Zephyr This package is a Laravel starter kit with auth scaffolding using Livewire & Bootstrap. It was created for people who prefer using Livewire & B

null 23 Aug 26, 2022
Tailwind scaffolding for the Laravel framework.

Introduction Laravel Jetstream is a beautifully designed application scaffolding for Laravel. Jetstream provides the perfect starting point for your n

Devanox Private Limited 0 Jul 20, 2022
A kernel designed to run one and only one application in a virtualized environment

nanos Nanos is a new kernel designed to run one and only one application in a virtualized environment. It has several constraints on it compared to a

NanoVMs 2k Dec 20, 2022
Testbench Component is the de-facto package that has been designed to help you write tests for your Laravel package

Laravel Testing Helper for Packages Development Testbench Component is the de-facto package that has been designed to help you write tests for your La

Orchestra Platform 1.9k Dec 29, 2022
A collection of tools for rapidly building beautiful TALL stack interfaces, designed for humans.

Filament is a collection of tools for rapidly building beautiful TALL stack interfaces, designed for humans. Packages Admin Panel • Documentation • De

Filament 5.4k Jan 4, 2023
Login system designed by fragX to validate the user and prevent unauthorized access to confidential data.

Login_System v.0.1 Login system designed by fragX to validate the user and prevent unauthorized access to confidential data. ?? Features Sign In and S

fragX 1 Jan 28, 2022
Laravel Segment is an opinionated, approach to integrating Segment into your Laravel application.

Laravel Segment Laravel Segment is an opinionated, approach to integrating Segment into your Laravel application. Installation You can install the pac

Octohook 13 May 16, 2022
Laravel Larex lets you translate your whole Laravel application from a single CSV file.

Laravel Larex Translate Laravel Apps from a CSV File Laravel Larex lets you translate your whole Laravel application from a single CSV file. You can i

Luca Patera 68 Dec 12, 2022
A Laravel extension for using a laravel application on a multi domain setting

Laravel Multi Domain An extension for using Laravel in a multi domain setting Description This package allows a single Laravel installation to work wi

null 658 Jan 6, 2023
Laravel application project as Sheina Online Store backend to be built with Laravel and VueJS

About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experie

Boas Aditya Christian 1 Jan 11, 2022
Laravel package to find performance bottlenecks in your laravel application.

Laravel Meter Laravel Meter monitors application performance for different things such as requests, commands, queries, events, etc and presents result

Sarfraz Ahmed 230 Dec 27, 2022