10 lines
155 B
PHP
Executable File
10 lines
155 B
PHP
Executable File
<?php
|
|
|
|
class AlbumPage extends Page
|
|
{
|
|
public function cover()
|
|
{
|
|
return $this->content()->get('cover')->toFile() ?? $this->image();
|
|
}
|
|
}
|