All Projects → app-generator → laravel-react-purity-dashboard

app-generator / laravel-react-purity-dashboard

Licence: other
React Laravel - Purity Dashboard (Open-Source) | AppSeed

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects
HTML
75241 projects

Projects that are alternatives of or similar to laravel-react-purity-dashboard

django-neumorphism-uikit
Django Web App - Neumorphism UI Kit | AppSeed
Stars: ✭ 19 (-36.67%)
Mutual labels:  appseed
jinja-material-kit
Jinja Template - Material Kit 2 (Bootstrap 5) | AppSeed
Stars: ✭ 14 (-53.33%)
Mutual labels:  appseed
Chakra-UI-Admin-Dashboard-Template
Collection of custom made components using Chakra UI.
Stars: ✭ 64 (+113.33%)
Mutual labels:  chakra-ui
flitz
The Feed App Boilerplate - built on Blitz.js
Stars: ✭ 32 (+6.67%)
Mutual labels:  chakra-ui
octoclairvoyant-webapp
Compare GitHub changelogs across multiple releases in a single view.
Stars: ✭ 45 (+50%)
Mutual labels:  chakra-ui
flask-dashboard-tabler
Flask Dashboard - Tabler Design | AppSeed
Stars: ✭ 19 (-36.67%)
Mutual labels:  appseed
denoland.id
Website and library registry for Deno Land Indonesia 🏡
Stars: ✭ 53 (+76.67%)
Mutual labels:  chakra-ui
datepicker
A simple datepicker with Chakra-UI and date-fns
Stars: ✭ 140 (+366.67%)
Mutual labels:  chakra-ui
flask-gradient-able
Gradient Able - Open-Source Flask Dashboard | AppSeed
Stars: ✭ 59 (+96.67%)
Mutual labels:  appseed
django-dashboard-light-blue
Django Dashboard - Light Blue Design | AppSeed
Stars: ✭ 18 (-40%)
Mutual labels:  appseed
luck-or-hardwork
Simple web-app to provide illustration about a take on luck and hard work.
Stars: ✭ 29 (-3.33%)
Mutual labels:  chakra-ui
nikolovlazar.com
My personal site's repo built using Next.js, Chakra UI, MDX, Prisma, PlanetScale.
Stars: ✭ 126 (+320%)
Mutual labels:  chakra-ui
api-server-nodejs
Nodejs API Server - Express / SQLite / TypeORM | AppSeed
Stars: ✭ 171 (+470%)
Mutual labels:  appseed
ml gallery
This is a master project of some experiments with Neural Networks. Every project here is runnable, visualized and explained clearly.
Stars: ✭ 18 (-40%)
Mutual labels:  chakra-ui
laurabeatris.com
My portfolio built with Next.js, Chakra UI and GraphCMS
Stars: ✭ 137 (+356.67%)
Mutual labels:  chakra-ui
connect-metamask-react-dapp
Build a simple React / Web3 Dapp that replicates a small portion of the Uniswap v2 interface
Stars: ✭ 204 (+580%)
Mutual labels:  chakra-ui
django-black-dashboard
Django Dashboard Black - Open-source Seed Project | AppSeed
Stars: ✭ 225 (+650%)
Mutual labels:  appseed
static-site
Static Sites - Open-Source and Paid | AppSeed App Generator
Stars: ✭ 17 (-43.33%)
Mutual labels:  appseed
django-soft-ui-dashboard
Soft UI Dashboard - Open-source Django Dashboard | AppSeed
Stars: ✭ 133 (+343.33%)
Mutual labels:  appseed
egghead-getting-started-with-chakra-ui
This is the project that's part of the egghead.io course Getting Started with Chakra UI.
Stars: ✭ 74 (+146.67%)
Mutual labels:  chakra-ui

React Laravel Purity Dashboard

Open-source full-stack seed project that uses a React UI powered by a simple Laravel API Server. Laravel React Purity sample can be used to bootstrap fast a new project using a tested development-ready stack or simply for eLearning purposes by beginners. For newcomers, React is a popular Javascript library for coding user interfaces baked by Facebook and Laravel is a leading web framework written in PHP.


Features

  • Innovative Chakra UI Design - Crafted by Creative-Tim
  • React, Redux, Redux-persist
  • Authentication: JWT Login/Register/Logout
  • Full-stack ready using Laravel API Server (open-source project)
    • Simple, intuitive codebase - can be extended with ease.
    • Stack: PHP 7.4+ / Laravel 8 / Doctrine
    • Authentication via JWT Auth a dedicated library for Laravel and Lumen

Links


React Laravel Purity Dashboard - Open-source full-stack seed project crafted by Creative-Tim and AppSeed.


General Information

The product is built using a two-tier pattern where the React frontend is decoupled logically and physically from the API backend. In order to use the product in a local environment, a few simple steps are required:

  • Compile and start the Laravel API Backend
    • be default the server starts on port 5000
  • Compile and start the React UI
    • UI will start on port 3000 and expects a running backend on port 5000
  • Configuration (Optional)
    • Change the API port
    • Configure the API port used by the React UI to communicate with the backend

How to use the product

Step #1 - Start the Laravel API

$ cd laravel-api
$ 
$ # Install Modules
$ composer install
$ cp .env.example .env 
$ php artisan key:generate
$
$ # Generate a `secret` key used by JWT Authentication Flow
$ php artisan jwt:secret
$ 
$ # Set up the database
$ touch database/database.sqlite
$ php artisan migrate
$
$ # Start the server
$ php -S localhost:5000 server.php

Laravel API Server - Open-source Seed project.


Troubleshooting

To have a successful compilation of this product, make sure you have the following PHP extensions installed and enabled:

  • php-xml - required by Php-Unit
  • php7.4-sqlite - The SQLite driver required by Laravel ORM
$ # Php XML - required by Php Unit
$ sudo apt install php-xml php-cli php-mbstring php7.4-sqlite

Step #2 - Compile & start the React UI

$ cd react-ui
$
$ # Install Modules
$ yarn
$
$ # Start for development (LIVE Reload)
$ yarn start 

Configuration (Optional)

Change the port exposed by the Laravel API

$ php -S localhost:5001 server.php

Now, the API can be accessed on port 5001


Update the API port used by the React Frontend

API Server URL - src/config/constant.js

const config = {
    ...
    API_SERVER: 'http://localhost:5000/api/'  // <-- The magic line
};

API

For a fast set up, use this POSTMAN file: api_sample

Register - api/users/register (POST request)

POST api/users/register
Content-Type: application/json

{
    "username":"test",
    "password":"pass", 
    "email":"[email protected]"
}

Login - api/users/login (POST request)

POST /api/users/login
Content-Type: application/json

{
    "password":"pass", 
    "email":"[email protected]"
}

Logout - api/users/logout (POST request)

POST api/users/logout
Content-Type: application/json
authorization: JWT_TOKEN (returned by Login request)

{
    "token":"JWT_TOKEN"
}

Product UI

React Laravel Purity Dashboard - User

React Laravel Purity Dashboard - User.


React Laravel Purity Dashboard - Billing

React Laravel Purity Dashboard - Billing.


React Laravel Purity Dashboard - RTL Support

React Laravel Purity Dashboard - RTL Support.


Links & Resources



React Laravel Purity Dashboard - Open-source Seed Project provided by AppSeed App Generator

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].