Skip to content

Commit

Permalink
Заключение
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Nov 30, 2017
1 parent d03efb9 commit 766f63c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
38 changes: 24 additions & 14 deletions docs/en/index.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@

#Documentation
# Documentation
----------

ORCHID PHP is an application that allows you to quickly write simple but powerful websites and applications.
The main emphasis is on rapid prototyping and different content.
ORCHID is a tool (Platform) that allows you to quickly write simple but powerful websites and applications.
Provided as a package for Laravel, you can easily integrate it as a third-party component using Composer

### How to read the documentation

That's all.
If you are a beginner, I recommend that you read the documentation "Laravel" from start to finish.
The ORCHID documentation does not explain the capabilities of the framework.
If you are already familiar with Laravel, you can go directly to the appropriate section.

###What is it?
This documentation begins with an explanation of the concept and architecture of ORCHID, before delving into specific topics.


ORCHID is an extension of the Laravel web programming framework, which can be used to develop almost any web application.
The package specializes in working with content and simplifying the construction of functionality, for the implementation of which on other systems the developer will have to face fear and hatred.
### Introduction

Most business applications are of the "form over data" type and provide a user interface for viewing, adding and modifying data
When you use other development tools to create applications such as "forms over data", a significant amount of time is spent performing repetitive tasks.
You write code for interaction with the database, code for the user interface and code for business logic.

Using ORCHID saves you from many repetitive tasks, you only need to write one type of code - business logic.

###Components

The platform is provided in the form of a package, you can easily integrate it as a third-party component using Composer
### Features for Business Applications

Modern business applications require many features, such as search capabilities, the ability to sort and reorder the nets, as well as the ability to export data.
All these and many other features are already built into ORCHID applications. In addition, typical data operations, such as adding, updating, saving and deleting, are also built in as a basic data validation logic.

Using custom controls and applying shell extensions to change the layout. You can use custom field types to reduce the amount of code created and simplify the formatting in the user interface.


### How to read the documentation

If you are a beginner, then I recommend that you read the `Laravel` documentation from start to finish.
If you are already familiar with Laravel, you can instead go directly to the appropriate section.
### Conclusion

This documentation begins with an explanation of the concept and architecture of Orchid before deepening into specific topics.
ORCHID takes care of all the routine operations to develop business applications, giving users the ability to focus on a unique business logic that meets their requirements.

Despite the seeming simplicity, it allows you to solve many tasks with the help of standard settings, and, if necessary, expand your own functions.
2 changes: 1 addition & 1 deletion docs/ru/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ composer require orchid/platform

Опубликуем настройки и вспомогательные файлы в наше приложение:
```php
php artisan vendor:publish --provider="Orchid\Platform\Providers\FoundationServiceProvider"
php artisan vendor:publish --all
```

Применим все наши миграции, что бы собрать базу данных:
Expand Down

0 comments on commit 766f63c

Please sign in to comment.