Htmlable.php 186 B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. interface Htmlable
  4. {
  5. /**
  6. * Get content as a string of HTML.
  7. *
  8. * @return string
  9. */
  10. public function toHtml();
  11. }