12 lines
183 B
PHP
12 lines
183 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Position extends Model
|
|
{
|
|
protected $table = 'position';
|
|
protected $fillable = ['name', 'election_id'];
|
|
}
|