PHPackages                             ngtfkx/laradeck-commands - 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. [CLI &amp; Console](/categories/cli)
4. /
5. ngtfkx/laradeck-commands

ActiveLibrary[CLI &amp; Console](/categories/cli)

ngtfkx/laradeck-commands
========================

A set of useful Laravel artisan commands

1.0.0(8y ago)062[3 issues](https://github.com/ngtfkx/laradeck-commands/issues)MITPHPPHP ~7.0

Since Sep 13Pushed 8y ago1 watchersCompare

[ Source](https://github.com/ngtfkx/laradeck-commands)[ Packagist](https://packagist.org/packages/ngtfkx/laradeck-commands)[ Docs](https://github.com/ngtfkx/laradeck-commands)[ RSS](/packages/ngtfkx-laradeck-commands/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

Laradeck Commands
=================

[](#laradeck-commands)

[![Latest Version on Packagist](https://camo.githubusercontent.com/539e9b49be2b01f1466d975eea28617ddce99903c272ee2c73d43801dd7babfc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6774666b782f6c6172616465636b2d636f6d6d616e64732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ngtfkx/laradeck-commands)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/46a81e74f27011485f6a505ac81b3aa4a6bccaf582b2351703e89f512dbc9d2d/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6e6774666b782f6c6172616465636b2d636f6d6d616e64732f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/ngtfkx/laradeck-commands)[![Coverage Status](https://camo.githubusercontent.com/ebf3a6de79405b89054c087c0204c860e7ec32a2892d83d35d055387f346f87c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6e6774666b782f6c6172616465636b2d636f6d6d616e64732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/ngtfkx/laradeck-commands/code-structure)[![Quality Score](https://camo.githubusercontent.com/157cb3c25e41039fa8e0e0be495cb134f30dd1d1f09bb063d333728d10c1438b/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6e6774666b782f6c6172616465636b2d636f6d6d616e64732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/ngtfkx/laradeck-commands)[![Total Downloads](https://camo.githubusercontent.com/da872b8eda1afd6033989ffa1f5793604a1dd6c2b130e040ebcca22ea400b48e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6774666b782f6c6172616465636b2d636f6d6d616e64732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ngtfkx/laradeck-commands)

A set of useful Laravel artisan commands

- `php artisan laradeck:view {name}` Create a new view
- `php artisan laradeck:download {url}` Download file from url

Install
-------

[](#install)

### Downloading

[](#downloading)

Via Composer

```
$ composer require ngtfkx/laradeck-commands
```

### Registering the service provider

[](#registering-the-service-provider)

If you're using Laravel 5.5+, you can skip this step. The service provider will have already been registered thanks to auto-discovery.

Otherwise, add line `Ngtfkx\Laradeck\Commands\LaradeckCommandsServiceProvider::class,` manually in your `config\app.php` file.

Usage
-----

[](#usage)

### laradeck:view

[](#laradeckview)

```
# Create a new view
php artisan laradeck:view admin.users.show
```

```
# Create a new view and rewrite old with same name
php artisan laradeck:view admin.users.show --force
```

```
# Create a new view with @extends directive
php artisan laradeck:view admin.users.show --extends=layouts.app
```

```
# Create a new view with @section directive
php artisan laradeck:view admin.users.show --section=content --section=sidebar
```

```
# Create a new view with @section directive (other syntax)
php artisan laradeck:view admin.users.show --section=content,sidebar
```

Similarly for `@push` (`--stack`) and `@component` (`--component`) directives.

### laradeck:download

[](#laradeckdownload)

```
# download file and save it as storage/app/8SE_CIgzZw8.jpg
php artisan laradeck:download https://pp.userapi.com/c7008/v7008434/a3dc5/8SE_CIgzZw8.jpg
```

```
# download file and save it as storage/app/123.jpg
php artisan laradeck:download https://pp.userapi.com/c7008/v7008434/a3dc5/8SE_CIgzZw8.jpg --name=123.jpg
```

```
# download file and save it as storage/app/test/photo/123.jpg
php artisan laradeck:download https://pp.userapi.com/c7008/v7008434/a3dc5/8SE_CIgzZw8.jpg --name=123.jpg --path=test/photo
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Credits
-------

[](#credits)

- [Denis Sandal](https://github.com/:author_username)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3212d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/88ffb7c9f3e09555ebe86802abaee7c8594694b649e3409c5d475f247336ff82?d=identicon)[ngtfkx](/maintainers/ngtfkx)

---

Top Contributors

[![ngtfkx](https://avatars.githubusercontent.com/u/5647351?v=4)](https://github.com/ngtfkx "ngtfkx (20 commits)")

---

Tags

consolelaravelartisancommandsngtfkxlaradecklaradeck-commands

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/ngtfkx-laradeck-commands/health.svg)

```
[![Health](https://phpackages.com/badges/ngtfkx-laradeck-commands/health.svg)](https://phpackages.com/packages/ngtfkx-laradeck-commands)
```

###  Alternatives

[vkovic/laravel-commando

Collection of handy Laravel artisan commands that most projects needs

6140.5k](/packages/vkovic-laravel-commando)[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16357.3k8](/packages/nunomaduro-laravel-console-dusk)[guratr/nova-command-runner

Laravel Nova tool for running Artisan commands.

43248.8k1](/packages/guratr-nova-command-runner)[perryvandermeer/laravel-console-validator

Validate arguments for Laravel commands

109.6k](/packages/perryvandermeer-laravel-console-validator)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
