Code Monkey home page Code Monkey logo

laravel-validation-generator's Introduction

Laravel Validation Generator

Automatically add the validations for tables in the database

Installation

The package can easily be installed by running composer require vigneshc91/laravel-validation-generator in your project's root folder.

If you are running a version of Laravel < 5.5 also make sure you add Vigneshc91\LaravelValidationGenerator\ValidationGeneratorServiceProvider::class to the providers array in config/app.php.

This will register the artisan command that will be available to you.

Usage

Generating the validation is easy, simply run php artisan laravel-validation:generate in your project root. This will create a request file and save it in the requests directory.

If you wish to generate validation only for specific tables, you can pass a table using --tables, for example php artisan laravel-validation:generate --tables='users,addresses'

If you wish to ignore specific tables, you can pass a ignore-table using --ignore-tables, for example php artisan laravel-validation:generate --ignore-tables='users,addresses'

If you wish to ignore specific columns, you can pass a ignore-columns using --ignore-columns, for example php artisan laravel-validation:generate --ignore-columns='user_id,address_id'

If you wish to change the directory of creating the request file, you can pass a directory using --dir, for example php artisan laravel-validation:generate --dir='V1'

If you wish to change the suffix of creating the request file, you can pass a suffix using --suffix, for example php artisan laravel-validation:generate --suffix='Create'

If you wish to change the format of the output, you can pass a format using --format, for example php artisan laravel-validation:generate --format='file'

Format options are:
file
console

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.