Package Data | |
---|---|
Maintainer Username: | spatie |
Maintainer Contact: | ruben@spatie.be (Ruben Van Assche) |
Package Create Date: | 2021-05-14 |
Package Last Update: | 2024-10-23 |
Home Page: | https://spatie.be/docs/laravel-data/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:04:10 |
Package Statistics | |
---|---|
Total Downloads: | 10,568,548 |
Monthly Downloads: | 763,686 |
Daily Downloads: | 28,858 |
Total Stars: | 1,302 |
Total Watchers: | 12 |
Total Forks: | 212 |
Total Open Issues: | 16 |
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?
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 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.