PHPackages                             mmeshkatian/ariel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. mmeshkatian/ariel

ActiveLibrary[Framework](/categories/framework)

mmeshkatian/ariel
=================

best way to create your applications scaffold in easiest way

2.0.0(6y ago)55281MITPHP

Since Sep 3Pushed 6y ago1 watchersCompare

[ Source](https://github.com/mmeshkatian/Ariel)[ Packagist](https://packagist.org/packages/mmeshkatian/ariel)[ Docs](https://github.com/mmeshkatian/ariel)[ RSS](/packages/mmeshkatian-ariel/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (3)DependenciesVersions (4)Used By (0)

 [![Ariel Laravel](https://github.com/mmeshkatian/Ariel/raw/master/logo.png)](https://github.com/mmeshkatian/Ariel/blob/master/logo.png)

Ariel
=====

[](#ariel)

[![Total Downloads](https://camo.githubusercontent.com/0b361459e0ddd0ec3c9c61ec3b2b15d2ac4d3d57612fdd2d5f7a3ec9557860ea/68747470733a2f2f706f7365722e707567782e6f72672f6d6d6573686b617469616e2f617269656c2f646f776e6c6f6164732e706e67)](https://packagist.org/packages/mmeshkatian/ariel)[![Latest Stable Version](https://camo.githubusercontent.com/6cdeefe6ef22dc22fb875d6f4c9c26e416afdbac3c4ad30dffa3dc736cfeb780/68747470733a2f2f706f7365722e707567782e6f72672f6d6d6573686b617469616e2f617269656c2f762f737461626c65)](https://packagist.org/packages/mmeshkatian/ariel)[![Latest Unstable Version](https://camo.githubusercontent.com/6724de7647f1dfeb87314db3f2eaf60e4fafff70e909db3b41c9d3b51e049318/68747470733a2f2f706f7365722e707567782e6f72672f6d6d6573686b617469616e2f617269656c2f762f756e737461626c65)](https://packagist.org/packages/mmeshkatian/ariel)[![License](https://camo.githubusercontent.com/dfb2d868e39b29fee1076de3a5757d0e794caf6daec53b1de1e56d8530d4aeb8/68747470733a2f2f706f7365722e707567782e6f72672f6d6d6573686b617469616e2f617269656c2f6c6963656e7365)](https://packagist.org/packages/mmeshkatian/ariel)[![Awesome Laravel](https://camo.githubusercontent.com/8deb0d78e81ca47c3c3533bd8de23d75fa7a6f4f3e8fb067f246c42e62a8d06a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f417765736f6d652d4c61726176656c2d627269676874677265656e2e737667)](https://github.com/mmeshkatian/ariel)[![Build Status](https://camo.githubusercontent.com/63119775c70ffdce1aa64cbb62552a5078923b9aad24771f6fd0c07f9b15e785/68747470733a2f2f7472617669732d63692e6f72672f6d6d6573686b617469616e2f417269656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/mmeshkatian/Ariel)

A simple &amp; light-weight laravel package to manage your webApplications.

Requirements
------------

[](#requirements)

- PHP &gt;= 7.0.0
- Laravel &gt;= 5.4.0

Installation
------------

[](#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 &gt; 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).

[](#persian-simple-usage--virgoolio)

### 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).

[](#english-simple-usage--mediumcom)

Overview
--------

[](#overview)

Look at one of the following topics to learn more about Ariel

- [Configuration](#configuration)
- [ControllerBuilder](#ControllerBuilder)
- [ApiBuilder](#ApiBuilder)

Configuration
-------------

[](#configuration)

run these commands to publish assets and config：

```
php artisan vendor:publish --provider="Mmeshkatian\Ariel\ArielServiceProvider"

```

ControllerBuilder
-----------------

[](#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 :

```
