Skip to content

Commit

Permalink
Publish the parent method
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Jul 12, 2024
1 parent f13db0a commit 1452d58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ public function __construct(PostAuthor $author)
{
parent::__construct("author/$author->username");
}

public function getBladeView(): string
{
return $this->view;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,9 @@ public function __construct(Collection $authors)

$this->authors = $authors;
}

public function getBladeView(): string
{
return $this->view;
}
}

0 comments on commit 1452d58

Please sign in to comment.