1# STEP 0. create migration (in case you're starting from scratch)
2php artisan make:migration:schema create_tags_table --model=0 --schema="name:string:unique"
3php artisan migrate
4
5# STEP 1. create a Model, Request, Controller, Route and sidebar item for the admin panel
6php artisan backpack:crud tag #use singular, not plural
7
8# STEP 2. go through the generated files, customize according to your needs