All Projects → wutongwan → Laravel Lego

wutongwan / Laravel Lego

Licence: mit
Save you from CRUD

Projects that are alternatives of or similar to Laravel Lego

Permissionmanager
Admin interface for managing users, roles, permissions, using Backpack CRUD
Stars: ✭ 363 (+224.11%)
Mutual labels:  laravel, crud
Scaffold Interface
🚀 A Smart CRUD Generator For Laravel
Stars: ✭ 836 (+646.43%)
Mutual labels:  laravel, crud
Yaldash
👻 It's never been easier to build and customize admin panels. Yah! yaldash is a beautifully designed administration panel for Laravel.
Stars: ✭ 338 (+201.79%)
Mutual labels:  laravel, crud
Platform
A @laravel based RAD platform for back-office applications, admin/user panels, and dashboards.
Stars: ✭ 2,623 (+2241.96%)
Mutual labels:  laravel, crud
Larrock Core
Core components for LarrockCMS
Stars: ✭ 46 (-58.93%)
Mutual labels:  laravel, crud
Angular5.2 Laravel5.6
Angular 5.2 and Laravel 5.6 Authentication and CRUD
Stars: ✭ 17 (-84.82%)
Mutual labels:  laravel, crud
Sleepingowladmin
🦉 Administrative interface builder for Laravel (Laravel admin)
Stars: ✭ 671 (+499.11%)
Mutual labels:  laravel, crud
Cray
A Laravel package to help you generate nearly complete CRUD pages like crazy!
Stars: ✭ 108 (-3.57%)
Mutual labels:  laravel, crud
Builder
Prepare your Laravel apps incredibly fast, with various commands, services, facades and boilerplates.
Stars: ✭ 1,009 (+800.89%)
Mutual labels:  laravel, crud
Laravel Realworld Example App
Exemplary real world backend API built with Laravel
Stars: ✭ 954 (+751.79%)
Mutual labels:  laravel, crud
Laravel Ajax Crud
🧐 The Ultimate Guide For Creating Laravel CRUD AJAX Application using Laravel 5.8, Vue 2, Tailwindcss, Vue-router, and Axios
Stars: ✭ 84 (-25%)
Mutual labels:  laravel, crud
Crudbooster
Laravel CRUD Generator, Make an Advanced Web Application Quickly
Stars: ✭ 1,580 (+1310.71%)
Mutual labels:  laravel, crud
Totoval
An out-of-the-box artisan API web-framework written in go.
Stars: ✭ 110 (-1.79%)
Mutual labels:  laravel
Attended.io
An app to organise events and get feedback from attendees
Stars: ✭ 111 (-0.89%)
Mutual labels:  laravel
Laravel Fpdf
Create PDFs with Laravel, provides FPDF version 1.82
Stars: ✭ 108 (-3.57%)
Mutual labels:  laravel
Laravel Repository
Repository Design Pattern for Laravel 5 with Eloquent or Collection
Stars: ✭ 109 (-2.68%)
Mutual labels:  laravel
Fileuploader
Beautiful and powerful HTML file uploading tool. A jQuery, PHP and Node.js plugin that transforms the standard input into a revolutionary and fancy field on your page.
Stars: ✭ 111 (-0.89%)
Mutual labels:  laravel
Laravel 5 Snippets
Laravel 5 Snippets for Sublime Text
Stars: ✭ 110 (-1.79%)
Mutual labels:  laravel
Laravel Editormd
Editor.md For Laravel5(支持七牛存储)
Stars: ✭ 109 (-2.68%)
Mutual labels:  laravel
Laravel Translations Loader
Webpack loader to import Laravel translation files (PHP or JSON) into your JS bundle as JSON.
Stars: ✭ 109 (-2.68%)
Mutual labels:  laravel

Laravel-Lego

tests Latest Stable Version Total Downloads


注意:lego 尚处于开发阶段,1.0版本发布之前主要接口仍有调整的可能性,请注意查看 release note !


Example

  • UserController.php
$form = Lego::form(new User());

$form->addText('number', '编号')->required()->rule('numeric')->unique();
$form->addText('email', '邮箱')->required()->rule('email')->unique();

return $form->view('layout', ['form' => $form]);
  • layout.blade.php
<!doctype html>
<html lang="en">
<head>
    <title>Lego Form</title>
    @include('lego::styles')
</head>
<body>
    {!! $form !!}
    @include('lego::scripts')
</body>
</html>

image

Required

  • php >= 7.1
  • Laravel >= 6.0

Installment

1、Composer

composer require wutongwan/lego

2、Publish lego assets

php artisan vendor:publish --tag=lego-assets --force

Tips:

To keep the assets up-to-date and avoid issues in future updates, you may add the command to the post-update-cmd scripts in your composer.json file:

{
     "scripts": {
         "post-update-cmd": [
             "@php artisan vendor:publish --tag=lego-assets --force"
         ]
     }
 }

Documents

Development

  • 分支

    • master, 在 master 下开发及维护
  • 当前版本在以下环境中开发并维护

    • Mac
    • Ubuntu
  • Run Demo

    php demo/run.php [--host=127.0.0.1] [--port=8080]
    

起因

用了快一年的zofe/rapyd-laravel,整体觉得非常好用,但内部确实不少代码年久失修,比较脏,有的组件也不适合中国的情况(比如google map)。

所以我们几个小伙伴想了很久,还是决定重新造个轮子,参考rapyd的思路,做一个我们自己用着更顺手的脚手架库。

起名Lego,也是向乐高致敬,能用简单的Block搭建摩天大厦是我们的梦想。

现在整体代码还是非常初级的版本,有兴趣的朋友欢迎关注以及和我们讨论,但由于整个项目是以提高团队自身效率为最优先前提的,可能我们会独断一些,不会刻意的做的太通用。

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