Skip to content

Instantly share code, notes, and snippets.

View Jmrich's full-sized avatar

John Richardson Jmrich

View GitHub Profile
@Jmrich
Jmrich / json_assert.php
Last active January 2, 2019 15:04
Assert database has json values
// user class
class User extends Authenticatable
{
use Notifiable;
protected $fillable = [
'name', 'email', 'password',
];
protected $hidden = [