Skip to content

Instantly share code, notes, and snippets.

@catwhocode
Created January 8, 2023 02:41
Show Gist options
  • Save catwhocode/66f61ae98e0189208beb82a8a44bec6e to your computer and use it in GitHub Desktop.
Save catwhocode/66f61ae98e0189208beb82a8a44bec6e to your computer and use it in GitHub Desktop.
Using Carbon
<?php
$tanggal = '2023-01-01';
if (Carbon::parse($tanggal)->gt(Carbon::now())){
echo 'Form input tidak tampil';
} else {
echo 'Form input tampil';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment