sasasa / portal

1 stars 0 forks source link
php artisan tinker

php artisan make:command CSVLoader

php artisan make:model Place -m
php artisan make:controller PlaceController --resource

php artisan migrate
php artisan migrate:refresh
php artisan csv:load
php artisan shop:load
php artisan db:seed --class=UsersTableSeeder

php artisan make:command ShopLoader
php artisan make:model Shop -m

php -r "copy('https://readouble.com/laravel/6.x/ja/install-ja-lang-files.php', 'install-ja-lang.php');"
php -f install-ja-lang.php
php -r "unlink('install-ja-lang.php');"

npm install
npm run dev

composer require laravel/ui --dev
php artisan ui bootstrap4
npm install
npm run dev

php artisan ui vue --auth
npm install
npm run dev
npm run watch

php artisan make:seeder UsersTableSeeder
php artisan db:seed --class=UsersTableSeeder

php artisan route:list

php artisan make:model Evaluation -m
php artisan make:controller EvaluationsController --resource
php artisan make:controller ShopsController --resource

php artisan storage:link
php artisan make:model Blog -m
php artisan make:controller BlogsController --resource

php artisan make:model LinkRequest -m
php artisan make:controller LinkRequestsController --resource

composer require laravel/helpers

php artisan make:migration add_column_is_subscription_users_table --table=users

php artisan make:controller ShopUsersController --resource

composer require --dev barryvdh/laravel-ide-helper
composer require --dev doctrine/dbal
php artisan ide-helper:generate
php artisan ide-helper:model

php artisan make:migration add_column_blog_id_to_shops_table --table=shops

php artisan make:model Article -m
php artisan make:controller ArticlesController --resource

php artisan make:migration add_column_parent_id_to_evaluations_table --table=evaluations

php artisan make:migration add_column_accept_state_to_link_requests_table --table=link_requests

php artisan make:mail LinkRequestNotification

composer install

php artisan make:seeder BlogsTableSeeder
php artisan db:seed --class=BlogsTableSeeder

php artisan make:seeder ArticlesTableSeeder
php artisan db:seed --class=ArticlesTableSeeder

Build Status Total Downloads Latest Stable Version License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

If you don't feel like reading, Laracasts can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

Laravel Sponsors

We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Patreon page.

Premium Partners

Community Sponsors

Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.

Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.

Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via taylor@laravel.com. All security vulnerabilities will be promptly addressed.

License

The Laravel framework is open-sourced software licensed under the MIT license.