https://github.com/mmeshkatian/ariel
Ariel. develope your webapplication in fastest way
https://github.com/mmeshkatian/ariel
apibuilder apicontroller ariel composer crud crud-creator laravel webapplications
Last synced: over 1 year ago
JSON representation
Ariel. develope your webapplication in fastest way
- Host: GitHub
- URL: https://github.com/mmeshkatian/ariel
- Owner: mmeshkatian
- License: mit
- Created: 2019-06-23T18:52:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-22T10:37:12.000Z (over 6 years ago)
- Last Synced: 2025-03-18T21:09:20.891Z (over 1 year ago)
- Topics: apibuilder, apicontroller, ariel, composer, crud, crud-creator, laravel, webapplications
- Language: PHP
- Size: 124 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ariel
[](https://packagist.org/packages/mmeshkatian/ariel)
[](https://packagist.org/packages/mmeshkatian/ariel)
[](https://packagist.org/packages/mmeshkatian/ariel)
[](https://packagist.org/packages/mmeshkatian/ariel)
[](https://github.com/mmeshkatian/ariel)
[](https://travis-ci.org/mmeshkatian/Ariel)
A simple & light-weight laravel package to manage your webApplications.
## Requirements
- PHP >= 7.0.0
- Laravel >= 5.4.0
## Installation
Install the package through [Composer](http://getcomposer.org/).
Run the Composer require command from the Terminal:
composer require mmeshkatian/ariel
If you're using Laravel > 5.5, this is all there is to do.
Should you still be on version 5.4 of Laravel, the final steps for you are to add the service provider of the package and alias the package. To do this open your `config/app.php` file.
Add a new line to the `providers` array:
Mmeshkatian\Ariel\ArielServiceProvider::class
And optionally add a new line to the `aliases` array:
'Ariel' => Mmeshkatian\Ariel\Facade::class,
Now you're ready to start using the Ariel in your application.
### Persian Simple Usage : [Virgool.io](https://virgool.io/@mmeshkatian/%D8%AA%D9%88%D8%B3%D8%B9%D9%87-%D9%BE%D9%86%D9%84-%D9%85%D8%AF%DB%8C%D8%B1%DB%8C%D8%AA-%D8%A8%D8%A7-laravel-%D9%88-%D9%BE%DA%A9%DB%8C%D8%AC-ariel-j4yubj1qcmbt).
### English Simple Usage : [medium.com](https://virgool.io/@mmeshkatian/%D8%AA%D9%88%D8%B3%D8%B9%D9%87-%D9%BE%D9%86%D9%84-%D9%85%D8%AF%DB%8C%D8%B1%DB%8C%D8%AA-%D8%A8%D8%A7-laravel-%D9%88-%D9%BE%DA%A9%DB%8C%D8%AC-ariel-j4yubj1qcmbt).
## Overview
Look at one of the following topics to learn more about Ariel
* [Configuration](#configuration)
* [ControllerBuilder](#ControllerBuilder)
* [ApiBuilder](#ApiBuilder)
## Configuration
run these commands to publish assets and config:
php artisan vendor:publish --provider="Mmeshkatian\Ariel\ArielServiceProvider"
## ControllerBuilder
create your controller by artisan command
php artisan make:controller TestArielController
open TestArielController placed in App/Http/Controllers then change the controller like below :
```php