Best laravel framework open-source packages.

Laravel svelte tailwind graphql passport auth demo 2

This is a pre-configured template made of Laravel, Lighthouse-PHP, Passport Auth, Inertia + SVelte + TailwindCSS + Snowpack
Updated 2 years ago

Get Started

  1. Clone the repo

    git clone git@github.com:Parables/txc-portal.git
    
    cd txc-portal
    
    composer install
    
    cp .env.example .env
    
    php artisan key:generate
    
    # open in your favorite editor/IDE
    code .
  2. Add the following to the .env file

    PASSPORT_CLIENT_ID=
    PASSPORT_CLIENT_SECRET=
  3. Setup your preferred Database connection in the env file

  4. Migrate and install passport auth

    php artisan migrate:fresh
    
    php artisan passport:install
    # copy the `Client ID` and `Client Secret` and set the `PASSPORT_CLIENT_ID` `PASSPORT_CLIENT_SECRET` respectively in the `.env` file
  5. Create the Super Admin

    php artisan db:seed --class SuperAdminSeeder
  6. Start the server and open localhost:8000/graphql-playground in your browser

    php artisan serve
  7. Query for all users

    {
        users{
            data {
                username
                email
                phone_number
            }
        }
    }
  8. If your get an Unauthenticated/Unauthorized request, Login using the Super Admin Account

    mutation{ 
        login(input: { 
            username: "super@admin.com" 
            password: "super-admin" 
        }){ 
             token_type 
             access_token 
             refresh_token 
             expires_in 
             user {
                 id 
                 username 
                 email 
                 phone_number created_at updated_at 
             } 
         } 
     } 
  9. Copy and paste the value of the access_token field from the login data response into the HTTP HEADER tab below(bottom-left) of the editor like below

    // replace ACCESS_TOKEN with the value of the `access_token` field you copied from the login response data
    {
        "AUTHORIZATION": "Bearer ACCESS_TOKEN",
    }
  10. Try step 7 again to verify if login as Super-Admin was successful

Further Reading: Setting up Laravel + Inertia + Svelte + TailwindCss + Snowpack

Build Status Total Downloads Latest Stable Version License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

If you don't feel like reading, Laracasts can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

Laravel Sponsors

We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Patreon page.

Premium Partners

Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.

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

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via taylor@laravel.com. All security vulnerabilities will be promptly addressed.

License

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