Fixed requestable user_id

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-09-18 14:32:59 +01:00
parent bae9982833
commit 655abe8be5

View file

@ -8,7 +8,7 @@ use Illuminate\Database\Eloquent\SoftDeletes;
class CheckoutRequest extends Model
{
use SoftDeletes;
protected $fillable = ['created_by'];
protected $fillable = ['user_id'];
protected $table = 'checkout_requests';
public function user()