I want to create a new row using the following SQL instead of eloquent
the code I am trying with :
$create_transections = DB::table('package_plan_fees')
->create([
'paid_amount' => $post_data['total_amount'],
'enroll_able' => $post_data['enrollable'],
'user_id' => $post_data['user_id'],
'package_id' => $post_data['package_id'],
'plan_id' => $post_data['plan_id'],
'status' => $post_data['status']
]);