Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imagine10255/laravel-schema-build
The database of the table schema, the output function into the file
https://github.com/imagine10255/laravel-schema-build
excel laravel-5-package migration table-schema
Last synced: 2 days ago
JSON representation
The database of the table schema, the output function into the file
- Host: GitHub
- URL: https://github.com/imagine10255/laravel-schema-build
- Owner: imagine10255
- Created: 2017-06-30T01:07:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T06:33:16.000Z (over 7 years ago)
- Last Synced: 2024-04-17T10:55:37.442Z (7 months ago)
- Topics: excel, laravel-5-package, migration, table-schema
- Language: PHP
- Homepage:
- Size: 219 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Schema-Build for Laravel 5
Better Laravel Exception Handler
[![Latest Stable Version](https://poser.pugx.org/imagine10255/schema-build/version)](https://packagist.org/packages/imagine10255/schema-build)
[![Total Downloads](https://poser.pugx.org/imagine10255/schema-build/downloads)](https://packagist.org/packages/imagine10255/schema-build)
[![Latest Unstable Version](https://poser.pugx.org/imagine10255/schema-build/v/unstable)](//packagist.org/packages/imagine10255/schema-build)
[![License](https://poser.pugx.org/imagine10255/schema-build/license)](https://packagist.org/packages/imagine10255/schema-build)
[![Monthly Downloads](https://poser.pugx.org/imagine10255/schema-build/d/monthly)](https://packagist.org/packages/imagine10255/schema-build)
[![Daily Downloads](https://poser.pugx.org/imagine10255/schema-build/d/daily)](https://packagist.org/packages/imagine10255/schema-build)
[![composer.lock available](https://poser.pugx.org/imagine10255/schema-build/composerlock)](https://packagist.org/packages/imagine10255/schema-build)## 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](https://getcomposer.org):
```bash
composer require Imagine10255/schema-build --dev
```Instead, you may of course manually update your require block and run `composer update` if you so choose:
```json
{
"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.
```php
...
if ($this->app->environment() == 'local') {
$this->app->register('Imagine10255\SchemaBuild\SchemaBuildServiceProvider');
}
```publish
```bash
php artisan vendor:publish --provider="Imagine10255\SchemaBuild\SchemaBuildServiceProvider"
```build excel
```bash
php artisan schema:build-excel
```## Review: