<?php

namespace App\Models\Lookups;

use Illuminate\Database\Eloquent\Model;

class Position_lookup extends Model
{
    //
    // I like to explicitly define tables
    protected $table = 'position_lookup';

    protected $guarded = [];

    protected $fillable = [
        'text'
    ];
}
