<?php
namespace App\Komma\Teamleader\Resources;
use App\Komma\Teamleader\Base\ApiResource;
use Carbon\Carbon;
class Product extends ApiResource
{
public string $id;
public string $name;
public string $description;
public string $code;
public Carbon $added_at;
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected array $_dates = [
'added_at',
];
}