| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Billing;
- use ApiPlatform\Metadata\ApiResource;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * Facture.
- */
- #[ApiResource(operations: [])]
- // #[Auditable]
- #[ORM\Entity]
- #[ORM\Table(name: 'BillAccounting')]
- class Bill extends AbstractBillAccounting
- {
- }
|