EVOLUTION-MANAGER
Edit File: User.php
<?php namespace App; use Illuminate\Notifications\Notifiable; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Foundation\Auth\User as Authenticatable; class User extends Authenticatable { use Notifiable; protected $fillable = [ 'name', 'cedula', 'email', 'password', 'remember_token', ]; protected $hidden = [ 'password', ]; }