Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Created July 22, 2021 03:46
Show Gist options
  • Save EricMcWinNer/a31cabec2bee5f0933dd8cd114603259 to your computer and use it in GitHub Desktop.
Save EricMcWinNer/a31cabec2bee5f0933dd8cd114603259 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
'posts' => 'boolean',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment