$page->hasFiles()
Checks if the Files collection has any files
$page->hasFiles(): bool
Return type
bool
Parent class
Example
<?php
echo $page->hasFiles(); //will echo 1 if true, nothing if false
if($page->hasFiles()) {
$files = $page->files()
}
?>