All Projects → louislam → louislam-crud

louislam / louislam-crud

Licence: MIT license
An easy-to-use CRUD library for you to create a back-end system or RESTful API in a few minutes.

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
typescript
32286 projects
Less
1899 projects

Projects that are alternatives of or similar to louislam-crud

Attendance-1
A simple attendance list with a delete button, that can delete from the inputs you submitted to the database
Stars: ✭ 15 (-16.67%)
Mutual labels:  crud
ionic3-firebase-ngrx
Sample Ionic 3 application using ngrx with firebase (auth, crud and camera plugin)
Stars: ✭ 48 (+166.67%)
Mutual labels:  crud
ui
Laravel Livewire & Bootstrap 5 UI & CRUD starter kit.
Stars: ✭ 82 (+355.56%)
Mutual labels:  crud
Codeigniter-4-CRUD-generator
ADEL CCG is an easy open-source intuitive web app to create AdminLTE4 -Bootstrap 5- dashboards with CRUD operations in php.
Stars: ✭ 87 (+383.33%)
Mutual labels:  crud
tefact
🏭 (Beta) 轻量级无代码/低代码 H5、表单编辑器。Lightweight no-code/low-code editor for website、H5 page and Form. Build your page without code!
Stars: ✭ 244 (+1255.56%)
Mutual labels:  crud
damas-core
JSON storage service. RESTful, CRUD, multi-user.
Stars: ✭ 50 (+177.78%)
Mutual labels:  crud
mesan-nodejs-auth-crud-api
NodeJS Authentication and CRUD operations API -: Email Verification, Image Upload, Password Reset
Stars: ✭ 72 (+300%)
Mutual labels:  crud
DjangoReactTodo
Build a simple CRUD Todo app with Django, React and Semantic UI
Stars: ✭ 23 (+27.78%)
Mutual labels:  crud
sam-python-crud-sample
This project is an example about lambda, SAM, dynamodb. This repository contains source code and supporting files for a serverless application that you can deploy with the SAM CLI. It includes the following files and folders.
Stars: ✭ 71 (+294.44%)
Mutual labels:  crud
titan-starter-website
A Laravel Website and Admin starter project that helps you with the setup.
Stars: ✭ 51 (+183.33%)
Mutual labels:  crud
Ffast-Java
Ffast 基于Srping boot + Mybatis Plus后台管理系统前后分离快速开发解决方案
Stars: ✭ 104 (+477.78%)
Mutual labels:  crud
django-dedal
Fast CRUD implemetation for Django.
Stars: ✭ 14 (-22.22%)
Mutual labels:  crud
CSJsonDB
A C# package that performs basic CRUD ( Create, Read, Update, Delete ) operations on a Json file, used for sample minimalistic DBs.
Stars: ✭ 75 (+316.67%)
Mutual labels:  crud
velox
The minimal PHP micro-framework.
Stars: ✭ 55 (+205.56%)
Mutual labels:  crud
.NET-Core-Learning-Journey
Some of the projects i made when starting to learn .NET Core
Stars: ✭ 37 (+105.56%)
Mutual labels:  crud
repository
[PHP 7] Implementation and definition of a base Repository in Domain land.
Stars: ✭ 26 (+44.44%)
Mutual labels:  crud
node-restafary
REST for CRUD file operations
Stars: ✭ 13 (-27.78%)
Mutual labels:  crud
vue-js-crud-laravel
Simple CRUD operations using Laravel and Vue.js
Stars: ✭ 27 (+50%)
Mutual labels:  crud
laravel-crud-generator
Generate a CRUD scaffold with validation rules like a breeze.
Stars: ✭ 137 (+661.11%)
Mutual labels:  crud
avo
Ruby on Rails application building framework
Stars: ✭ 907 (+4938.89%)
Mutual labels:  crud

Louis Lam's CRUD

Features

  • "Write Less, Do More".
  • Create/Update/Delete/ListView web interface.
  • RESTful API.
  • Auto create tables and fields for you.
  • Extensible Field Types.
  • Theme
  • Work without any framework. (But work better with Slim Framework by default)
  • Export to Excel format (Customizable)
  • Support MySQL/MariaDB, SQLite, PostgreSQL and CUBRID.

Documentation

https://github.com/louislam/louislam-crud/wiki

Installation

Note: The library is under development and not tested very well currently.

Method 1: add louislam-crud to your composer.json

  1. Require the library.

    "require": {
        "louislam/louislam-crud": "3.x-dev"
    }
  2. Compose the project with PHP Composer.

Method 2: Start a new project with bootstrap project.

  1. Download bootstrap project from: https://github.com/louislam/louislam-crud-bootstrap
  2. Compose the project with PHP Composer.

Method 3: Direct Download without Composer (Coming Soon)

Getting started with a simple example

  1. Require and Import Libraries.

    <?php
    
    require "vendor/autoload.php";
    use LouisLam\CRUD\SlimLouisCRUD;
    use RedBeanPHP\R;
  2. Setup a Database Connection (Support MySQL, SQLite etc.)

    For SQLite:

    R::setup('sqlite:dbfile.db');

    For MySQL:

    R::setup( 'mysql:host=localhost;dbname=mydatabase', 'user', 'password' );

    More info: http://www.redbeanphp.com/index.php?p=/connection

  3. Create a SlimLouisCRUD instance.

    $crud = new SlimLouisCRUD();
  4. Add a route for your table (product).

    // Add a Route for "product" table
    $crud->add("product", function () use ($crud) {
    
        // Show and Ordering the fields
        $crud->showFields([
            "id", 
            "name", 
            "price", 
            "description"
        ]);
        
    });
  5. Run the application.

    $crud->run();
  6. Open it in your browser.

    http://<your hostname>/index.php/crud/product
    

    Alt screenshot

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].