'required|string|max_length[9]', ]; // Enable auto-incrementing primary key protected $useAutoIncrement = true; // Specify return type as an array protected $returnType = 'array'; // Automatically set `created_at` and `updated_at` fields protected $useTimestamps = true; // Specify the names of the timestamp fields protected $createdField = 'created_at'; protected $updatedField = 'updated_at'; }