Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wendelladriel/laravel-model-completed

Laravel helper to know the completion status of an Eloquent Model
https://github.com/wendelladriel/laravel-model-completed

eloquent eloquent-models laravel model model-status

Last synced: 2 months ago
JSON representation

Laravel helper to know the completion status of an Eloquent Model

Awesome Lists containing this project

README

        

# Laravel Model Completed

> Laravel helper to know the completion status of an Eloquent Model

## Installation

```
composer require wendelladriel/laravel-model-completed
```

## Usage

This package provides a trait: `\WendellAdriel\ModelCompleted\HasCompletionStatus` that you can use in your **Eloquent Models**.

You also need to provide a `protected array $required` property with a list of required properties to consider your
**Model** completed:

```php