unique record
Unique function protects database from holding multiple records with the same value.
// Inside of a migration
$table->string('category')->unique(); // Only one category of each type will be crated.
copy