Skip to content

Instantly share code, notes, and snippets.

@ninfty
Created August 8, 2020 19:50
Show Gist options
  • Save ninfty/b513d790b37b8047d0d5be85905ce033 to your computer and use it in GitHub Desktop.
Save ninfty/b513d790b37b8047d0d5be85905ce033 to your computer and use it in GitHub Desktop.
<?php
public function getPagseguroStatusAttribute($value)
{
switch ($value) {
case 1: return 'Aguardando pagamento';
case 2: return 'Em análise';
case 3: return 'Paga';
case 4: return 'Disponível';
case 5: return 'Em disputa';
case 6: return 'Devolvida';
case 7: return 'Cancelada';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment