Create unified resources and data transfer objects
spatie/laravel-data is a Laravel package for create unified resources and data transfer objects.
It currently has 1.765 GitHub stars and 34.589.087 downloads on Packagist (latest version 4.23.0).
Install it with composer require spatie/laravel-data.
Discover more Laravel packages by spatie
or browse all Laravel packages to compare alternatives.
Last updated
This package enables the creation of rich data objects which can be used in various ways. Using this package you only need to describe your data once:
A laravel-data specific object is just a regular PHP object that extends from Data:
use Spatie\LaravelData\Data;
class SongData extends Data
{
public function __construct(
public string $title,
public string $artist,
) {
}
}
By extending from Data you enable a lot of new functionality like:
Why would you be using this package?
In this talk, given at Laracon, you'll see an introduction to Laravel Data.
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
You can install the package via composer:
composer require spatie/laravel-data
Read the installation notes on the docs site: https://spatie.be/docs/laravel-data/v4/installation-setup.
You will find full documentation on the dedicated documentation site.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.