PHPackages                             dipesh79/laravel-action-dto - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. dipesh79/laravel-action-dto

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

dipesh79/laravel-action-dto
===========================

A minimal Action + DTO pattern for Laravel with great developer experience.

1.0.2(2mo ago)0661MITPHPPHP ^8.1CI passing

Since Apr 15Pushed 2mo agoCompare

[ Source](https://github.com/dipesh79/LaravelActionDto)[ Packagist](https://packagist.org/packages/dipesh79/laravel-action-dto)[ RSS](/packages/dipesh79-laravel-action-dto/feed)WikiDiscussions 1.x Synced 1w ago

READMEChangelog (3)Dependencies (5)Versions (6)Used By (0)

[![Package Image](https://camo.githubusercontent.com/4aa46f6b2c79736472f308738299963434eadb3f9079bd6e293444394e96f360/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f4c61726176656c416374696f6e44746f2e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d64697065736837392532466c61726176656c2d616374696f6e2d64746f267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d47656e65726174652b416374696f6e732532432b44544f732532432b616e642b517565726965732b666f722b4c61726176656c266d643d312673686f7757617465726d61726b3d3126666f6e7453697a653d313030707826696d616765733d68747470732533412532462532466c61726176656c2e636f6d253246696d672532466c6f676f6d61726b2e6d696e2e737667)](https://camo.githubusercontent.com/4aa46f6b2c79736472f308738299963434eadb3f9079bd6e293444394e96f360/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f4c61726176656c416374696f6e44746f2e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d64697065736837392532466c61726176656c2d616374696f6e2d64746f267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d47656e65726174652b416374696f6e732532432b44544f732532432b616e642b517565726965732b666f722b4c61726176656c266d643d312673686f7757617465726d61726b3d3126666f6e7453697a653d313030707826696d616765733d68747470732533412532462532466c61726176656c2e636f6d253246696d672532466c6f676f6d61726b2e6d696e2e737667)

Laravel Action DTO
==================

[](#laravel-action-dto)

[![Latest Stable Version](https://camo.githubusercontent.com/cff99edfcc7dce29d6beb25018c00ba514ba152794ab636aacc17ef48c29be6b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f64697065736837392f6c61726176656c2d616374696f6e2d64746f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dipesh79/laravel-action-dto)[![Total Downloads](https://camo.githubusercontent.com/faf8850247807b095b2a05407372925542a5850f812872c192bdb03c53985b8f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64697065736837392f6c61726176656c2d616374696f6e2d64746f)](https://packagist.org/packages/dipesh79/laravel-action-dto)[![License](https://camo.githubusercontent.com/2319bb0e7401db36e28bc521d00362b68275396e0d671847c4c7089fcc345cef/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f64697065736837392f6c61726176656c2d616374696f6e2d64746f)](https://packagist.org/packages/dipesh79/laravel-action-dto)[![Tests](https://github.com/Dipesh79/LaravelActionDto/actions/workflows/tests.yml/badge.svg?branch=1.x)](https://github.com/Dipesh79/LaravelActionDto/actions/workflows/tests.yml?query=branch%3A1.x)[![Coverage](https://camo.githubusercontent.com/760aa79eb053e50e013e5093613af6de783662bfffec3cb6af2442a2399bd58d/68747470733a2f2f636f6465636f762e696f2f67682f44697065736837392f4c61726176656c416374696f6e44746f2f6272616e63682f312e782f67726170682f62616467652e737667)](https://codecov.io/gh/Dipesh79/LaravelActionDto/tree/1.x)

This Laravel package helps you generate Action, DTO, Query, and CRUD boilerplate with a consistent structure.

Quick Start
-----------

[](#quick-start)

### Install Using Composer

[](#install-using-composer)

```
composer require dipesh79/laravel-action-dto --dev
```

### Publish Configuration (Optional)

[](#publish-configuration-optional)

```
php artisan vendor:publish --tag=laravel-action-dto-config
```

Available Commands
------------------

[](#available-commands)

```
php artisan make:action CreateUser
php artisan make:dto CreateUser
php artisan make:query User
php artisan make:crud User
```

Running `make:crud User` generates:

- `app/Queries/UserQuery.php`
- `app/Actions/CreateUserAction.php`
- `app/Actions/UpdateUserAction.php`
- `app/Actions/DeleteUserAction.php`
- `app/DTOs/UserIndexDTO.php`
- `app/DTOs/UserShowDTO.php`
- `app/DTOs/UserUpdateDTO.php`

Official Documentation
----------------------

[](#official-documentation)

Documentation can be found on my [website](https://khanaldipesh.com.np/package/laravel-action-dto).

License
-------

[](#license)

[MIT](https://choosealicense.com/licenses/mit/)

Author
------

[](#author)

- [@Dipesh79](https://www.github.com/Dipesh79)

Support
-------

[](#support)

For support, email dipeshkhanal79\[at\]gmail\[dot\]com.

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance86

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

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

Every ~9 days

Total

4

Last Release

72d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/63183800?v=4)[Dipesh Khanal](/maintainers/Dipesh79)[@dipesh79](https://github.com/dipesh79)

---

Top Contributors

[![dipesh79](https://avatars.githubusercontent.com/u/63183800?v=4)](https://github.com/dipesh79 "dipesh79 (11 commits)")

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/dipesh79-laravel-action-dto/health.svg)

```
[![Health](https://phpackages.com/badges/dipesh79-laravel-action-dto/health.svg)](https://phpackages.com/packages/dipesh79-laravel-action-dto)
```

###  Alternatives

[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[crumbls/layup

A visual page builder plugin for Filament 5 — Divi-style grid layouts with extensible widgets.

592.8k2](/packages/crumbls-layup)[duncanmcclean/statamic-cargo

Comprehensive e-commerce addon for Statamic. Build bespoke e-commerce sites without the complexity.

3518.3k](/packages/duncanmcclean-statamic-cargo)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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