<?php

namespace App\Modules\Miscellaneous\State;

use App\Models\State;

class StateModule
{
    /**
     * Fetch List of States 
     * 
     * @return array
     */
    public function fetchItems () : array
    {
        $items      =   State::groupBy('name')
                            ->pluck('name')
                            ->toArray(); 

        return $items;
    }
}