Files
L-Ami-Fiduciaire/app/Enums/LegalForm.php

27 lines
380 B
PHP
Raw Normal View History

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
final class LegalForm extends Enum
{
const SARL = 'sarl';
const SA = 'sa';
const SNC = 'snc';
const SCS = 'scs';
const EURL = 'eurl';
const SEL = 'sel';
const AutoEntrepreneur = 'auto_entrepreneur';
const EntrepriseIndividuelle = 'entreprise_individuelle';
const Other = 'other';
}