imagine10255 / schema-build by imagine10255

The database of the table schema, the output function into the file
25
6
3
Package Data
Maintainer Username: imagine10255
Maintainer Contact: imagine10255@gmail.com (imagine10255)
Package Create Date: 2017-06-30
Package Last Update: 2017-07-17
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-16 15:05:22
Package Statistics
Total Downloads: 25
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 6
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Schema-Build for Laravel 5

Better Laravel Exception Handler

Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads composer.lock available

Features

  • The database of the table schema, the output function into the file
  • Laravel 5
  • Output Excel2007
  • Mysql5.6 After,MariaDB10 After

Installing

To get the latest version of Laravel Exceptions, simply require the project using Composer:

composer require Imagine10255/schema-build --dev

Instead, you may of course manually update your require block and run composer update if you so choose:

{
    "require": {
        "Imagine10255/schema-build": "^1.0"
    }
}

Include the service provider within app/Providers/AppServiceProvider.php. The service povider is needed for the generator artisan command.

...
if ($this->app->environment() == 'local') {
    $this->app->register('Imagine10255\SchemaBuild\SchemaBuildServiceProvider');
}

publish

php artisan vendor:publish --provider="Imagine10255\SchemaBuild\SchemaBuildServiceProvider"

build excel

php artisan schema:build-excel

Review: