Basically laravel migration has a default id which is a number starting from 1 and so on which is incremental, but I want to create an id whose contents are a mixture of numbers and strings in a database, how do I replace the id in laravel migration with the id I want?
for example I want to create id 'AA001' and increase automatically as the data in the database increases such as 'AA002', 'AA003' and so on.