<?php

class Stuff extends Eloquent
{
    public $timestamps = true;
    protected $softDelete = true;

    public function user()
    {
        return $this->belongsTo('User', 'stuffer_id');
    }

}