All Projects β†’ amranidev β†’ Scaffold Interface

amranidev / Scaffold Interface

Licence: mit
πŸš€ A Smart CRUD Generator For Laravel

Projects that are alternatives of or similar to Scaffold Interface

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 (-89.95%)
Mutual labels:  laravel, crud
Laravel Lego
Save you from CRUD
Stars: ✭ 112 (-86.6%)
Mutual labels:  laravel, crud
Larafast Fastapi
A Fast Laravel package to help you generate CRUD API Controllers and Resources, Model.. etc
Stars: ✭ 91 (-89.11%)
Mutual labels:  laravel, scaffold
Laravel Realworld Example App
Exemplary real world backend API built with Laravel
Stars: ✭ 954 (+14.11%)
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 (-59.57%)
Mutual labels:  laravel, crud
Builder
Prepare your Laravel apps incredibly fast, with various commands, services, facades and boilerplates.
Stars: ✭ 1,009 (+20.69%)
Mutual labels:  laravel, crud
Crudbooster
Laravel CRUD Generator, Make an Advanced Web Application Quickly
Stars: ✭ 1,580 (+89%)
Mutual labels:  laravel, crud
Think Builder
A command line toolit to build applications' CRUD/mvc scaffold for thinkphp v6. η”¨δΊŽη”Ÿζˆ thinkphp v6 咞ζŸ₯ζ”Ήεˆ θ„šζ‰‹ζžΆδ»£η ηš„ε‘½δ»€θ‘Œε·₯具。
Stars: ✭ 105 (-87.44%)
Mutual labels:  crud, scaffold
Platform
A @laravel based RAD platform for back-office applications, admin/user panels, and dashboards.
Stars: ✭ 2,623 (+213.76%)
Mutual labels:  laravel, crud
Laravel Scaffold
The base for developing awesome projects
Stars: ✭ 142 (-83.01%)
Mutual labels:  laravel, scaffold
Larawiz
Larawiz is a easy project scaffolder for Laravel
Stars: ✭ 28 (-96.65%)
Mutual labels:  laravel, scaffold
Sleepingowladmin
πŸ¦‰ Administrative interface builder for Laravel (Laravel admin)
Stars: ✭ 671 (-19.74%)
Mutual labels:  laravel, crud
Angular5.2 Laravel5.6
Angular 5.2 and Laravel 5.6 Authentication and CRUD
Stars: ✭ 17 (-97.97%)
Mutual labels:  laravel, crud
Larrock Core
Core components for LarrockCMS
Stars: ✭ 46 (-94.5%)
Mutual labels:  laravel, crud
Cli Spring Boot Scaffold
command line for generate crud and configs for spring boot projects
Stars: ✭ 113 (-86.48%)
Mutual labels:  crud, scaffold
Cray
A Laravel package to help you generate nearly complete CRUD pages like crazy!
Stars: ✭ 108 (-87.08%)
Mutual labels:  laravel, crud
Silexstarter
Starter app based on Silex framework with mvc and modular arch, scaffold generator, and admin panel
Stars: ✭ 11 (-98.68%)
Mutual labels:  crud, scaffold
Multi Auth
Laravel Multi-Authentication Package
Stars: ✭ 131 (-84.33%)
Mutual labels:  laravel, scaffold
Permissionmanager
Admin interface for managing users, roles, permissions, using Backpack CRUD
Stars: ✭ 363 (-56.58%)
Mutual labels:  laravel, crud
Laravel
Laravel Model Generator
Stars: ✭ 715 (-14.47%)
Mutual labels:  laravel, scaffold

SensioLabsInsight

Imgur Gitter chat Build Status StyleCI Built For Laravel Total Downloads Latest Stable Version Latest Unstable Version License

Scaffold

Features

  • Generate your models, views, controllers, routes and migrations just in a few clicks.

  • Models visualization through a graph presentation (New Feature).

  • Views scaffolding support Bootstrap and Materialize css.

  • Generate (OneToMany,ManyToMany) relationships including views and controllers.

  • Websockets using pusher notifications.

  • AdminLTE dashboard template with users management system (users-roles-permissions) using laravel-permission.

  • Softdeletes and timestamps.

  • A delete confirmation message.

  • Using an interface to design your table.

  • Rollback possibility.

  • Generate CRUD for packages, see Lpackager, CRUD for packages/modules.

Installation

  1. Run the following command:

composer require amranidev/scaffold-interface

  1. Add the service providers to config/app.php:
Amranidev\ScaffoldInterface\ScaffoldInterfaceServiceProvider::class,
Amranidev\Ajaxis\AjaxisServiceProvider::class,
Spatie\Permission\PermissionServiceProvider::class,
Pusher\Laravel\PusherServiceProvider::class,
  1. Publish the assets in your application with:

php artisan vendor:publish

  1. Run migrations:

php artisan migrate

  1. Authentication scaffolding:

php artisan make:auth

  1. Add HasRole dependency to app/User.php:
<?php

namespace App;

use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Spatie\Permission\Traits\HasRoles;

class User extends Authenticatable
{
    use Notifiable;
    use HasRoles;
}

Congratulations, you have successfully installed Scaffold Interface!

Detailed Documentation

Full documentation.

Contribution

Any ideas are welcome. Feel free to submit any issues or pull requests.

Author

Credits

Contact : [email protected]

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