This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\BookingNumbers; | |
use App\Interfaces\BookingNumberGeneratorInterface; | |
use App\Interfaces\BookingNumberSequenceInterface; | |
/** | |
* Generates an unique Booking number with the format <current year>0000 | |
* The sequence is divided by year in the order_sequence table and incremented with each order |