Laravel Model save() & update() Not Saving



PHP Snippet 1:

PatronCoupons::update([
    // updates here
]);

PHP Snippet 2:

$patronCoupons = PatronCoupons::find($id);

$patronCoupons->update([
    'times_used' => 'value',
    'current_uses' => 'value',
    'settings_version' => 'value'
]);

PHP Snippet 3:

$post = $request->all();

$patronCoupons = PatronCoupons::find($id);

$patronCoupons->update($post);

PHP Snippet 4:

'enctype' => 'multipart/form-data'