定制 elgibor-solution/laravel-form-builder 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

elgibor-solution/laravel-form-builder

最新稳定版本:1.0.1

Composer 安装命令:

composer require elgibor-solution/laravel-form-builder

包简介

A Laravel package for managing form builder resources.

README 文档

README

Laravel Form Builder is a package that allows developers to create dynamic APIs without writing manual queries in the backend. With this package, the frontend can retrieve data from the database without requiring a new API for each request.

📦 Features

CRUD operations for Data Sources
Dynamic queries based on tables, columns, and parameters
✅ Supports custom queries (only SELECT queries allowed)
Caching for improved query performance
✅ API to get list of tables and list of columns from the database
✅ Easy installation as a Laravel Package

🛠 Installation

1️⃣ Add the Package to Laravel

composer require elgibor-solution/laravel-form-builder

2️⃣ Publish and Run Migrations

php artisan migrate

To publish migration files to your Laravel project:

php artisan vendor:publish --provider="ESolution\DataSources\Providers\DataSourcesServiceProvider" --tag=migrations

📌 API Endpoints

1️⃣ Get All Data Sources

GET /api/data-sources

2️⃣ Create a New Data Source

POST /api/data-sources
Content-Type: application/json

Body:

{
    "name": "Users List",
    "table_name": "users",
    "use_custom_query": false,
    "columns": ["id", "name", "email"]
}

3️⃣ Execute Query from a Data Source

GET /api/data-sources/{id}/query

4️⃣ Get All Tables in the Database

GET /api/data-sources/tables

5️⃣ Get All Columns from a Table

GET /api/data-sources/tables/{table}/columns

⚡ Technologies Used

  • Laravel 8+
  • MySQL / PostgreSQL
  • Redis Cache

🤝 Contributing

If you’d like to contribute to this project, feel free to fork the repository and submit a pull request! 🚀

Happy Coding!

统计信息

  • 总下载量: 626
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Apache-2.0
  • 更新时间: 2025-02-17