Created
August 8, 2020 19:50
-
-
Save ninfty/b513d790b37b8047d0d5be85905ce033 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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