Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 25 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-22T10:37:12.000Z (almost 5 years ago)
- Last Synced: 2024-10-12T22:42:32.209Z (25 days 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
[![Total Downloads](https://poser.pugx.org/mmeshkatian/ariel/downloads.png)](https://packagist.org/packages/mmeshkatian/ariel)
[![Latest Stable Version](https://poser.pugx.org/mmeshkatian/ariel/v/stable)](https://packagist.org/packages/mmeshkatian/ariel)
[![Latest Unstable Version](https://poser.pugx.org/mmeshkatian/ariel/v/unstable)](https://packagist.org/packages/mmeshkatian/ariel)
[![License](https://poser.pugx.org/mmeshkatian/ariel/license)](https://packagist.org/packages/mmeshkatian/ariel)
[![Awesome Laravel](https://img.shields.io/badge/Awesome-Laravel-brightgreen.svg)](https://github.com/mmeshkatian/ariel)
[![Build Status](https://travis-ci.org/mmeshkatian/Ariel.svg?branch=master)](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
## InstallationInstall 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 commandphp artisan make:controller TestArielController
open TestArielController placed in App/Http/Controllers then change the controller like below :
```php