Skip to content

Instantly share code, notes, and snippets.

@zhanang19
Created January 7, 2020 02:07
Show Gist options
  • Save zhanang19/f82705a9cd75f89147c7b986b6e945fb to your computer and use it in GitHub Desktop.
Save zhanang19/f82705a9cd75f89147c7b986b6e945fb to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
/**
* Get the user's first name.
*
* @param string $value
* @return string
*/
public function getFirstNameAttribute($value)
{
return strtoupper($value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment