Skip to content

Instantly share code, notes, and snippets.

View tamathecxder's full-sized avatar
🎗️
Be Present

Yudistira Eka Pratama tamathecxder

🎗️
Be Present
View GitHub Profile

Conventional Commit Messages

See how a minor change to your commit message style can make a difference. Examples

Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs

Commit Formats

Default

public function checkout_v2(Request $request)
{
$this->validate($request, [
'product_categories_id' => 'required|exists:ppob_categories,id',
'product_sub_categories_id' => 'required|exists:ppob_sub_categories,id',
'product_code' => 'required',
'hp' => 'required',
]);
$check10MenitTransaksiPerHP = $this->check10MenitTransaksiPerHP($request->hp);
if ($check10MenitTransaksiPerHP) {