Package Data | |
---|---|
Maintainer Username: | Laracademy |
Maintainer Contact: | michael@laracademy.co (Michael McMullen) |
Package Create Date: | 2016-05-22 |
Package Last Update: | 2023-10-21 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:01:30 |
Package Statistics | |
---|---|
Total Downloads: | 269,682 |
Monthly Downloads: | 5,599 |
Daily Downloads: | 256 |
Total Stars: | 348 |
Total Watchers: | 16 |
Total Forks: | 51 |
Total Open Issues: | 0 |
Laracademy Generators - is a tool set that helps speed up the development process of a Laravel application.
Author(s):
composer require "laracademy/generators"
The easiest method is to add the following into your config/app.php
file
Laracademy\Generators\GeneratorsServiceProvider::class
In Lumen you can add the following into your bootstrap/app.php
$app->register(Laracademy\Generators\GeneratorsServiceProvider::class);
Depending on your set up you may want to only use these providers for development, so you don't update your production
servers. Instead, add the provider in `app/Providers/AppServiceProvider.php' like so
public function register()
{
if($this->app->environment() == 'local') {
$this->app->register('\Laracademy\Generators\GeneratorsServiceProvider');
}
}
Now that we have added the generator to our project the last thing to do is run Laravel's Arisan command
php artisan
You will see the following in the list
generate:modelfromtable
This command will read your database table and generate a model based on that table structure. The fillable fields, casts, dates and even namespacing will be filled in automatically.
You can use this command to generate a single table, multiple tables or all of your tables at once.
This command comes with a bunch of different options, please see below for each parameter
migrations
table and no model will be generate for it
config/database.php
config/database.php
first.php artisan generate:modelfromtable --table=users
php artisan generate:modelfromtable --table=users,posts
php artisan generate:modelfromtable --all
database.php
and generating models for all tablesphp artisan generate:modelfromtable --connection=spark --all
php artisan generate:modelfromtable --table=user --folder=app\Models
ModelGen is open-sourced software licensed under the MIT license
Please add as many details as possible regarding submission of issues and feature requests
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.