OutrasInfoParticipante.php 274 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 <?php namespace App; use Illuminate\Database\Eloquent\Model; class OutrasInfoParticipante extends Model { protected $fillable = ['name', 'user_id', 'trabalho_id', 'participante_id']; public const ENUM_TURNO = ['Matutino', 'Vespertino', 'Noturno', 'Integral']; }