/**
* Check if MANY-MANY relationship existence & execute function if TRUE
* @var [type]
*/
if (is_null(Auth::user()->model->where('id', $model->id)->first())) {
Auth::user()->models()->attach(
$model->id,
['created_at' => date('Y-m-d H:i:s')]
);
}