Skip to content
  • This project
    • Loading...
  • Sign in

Tenzing / pdf-customizer

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • pdf-customizer
  • app
  • User.php
  • Jeff Balicki's avatar
    Revert "auth" · feb6bbac ...
    feb6bbac
    This reverts commit e0b2e00a.
    
    # Conflicts:
    #	app/Http/Controllers/AuthenticateController.php
    #	config/jwt.php
    #	public/files/js/interface.js
    Jeff Balicki committed 2016-05-18 13:51:20 -0400
User.php 449 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<?php

namespace App;

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];
}