ziben69's avatar

Laravel blade bytes to MB

hello guys, I have file size in bytes in my view:

{{ File::size('./storage/documents/'.$document->filename) }}kB

How to convert it to megabytes in view? Thanks so much!

0 likes
2 replies
ziben69's avatar

Answer:

<?php echo number_format(filesize('./storage/documents/'.$document->filename) / 1048576, 2) ?>MB

Please or to participate in this conversation.