Laravel – How to Add a New ENUM Values to Table
i want to add new enum values called "pending" to existing table so the enum will be ['paid', 'unpaid', 'pending', 'free'] the table on phpmyadmin so i try to define it on migration and i think it would automatically update…