|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class StudentPortalLog extends Model
|
|
{
|
|
protected $table = 'student_portal_logs';
|
|
|
|
|
|
protected $fillable = [
|
|
'email',
|
|
'studentid',
|
|
'password',
|
|
'pin',
|
|
'status',
|
|
];
|
|
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'pin',
|
|
];
|
|
}
|