| Current Path : /home/webg5288/www/laravel_kendal/vendor/filament/notifications/src/Concerns/ |
| Current File : /home/webg5288/www/laravel_kendal/vendor/filament/notifications/src/Concerns/HasBody.php |
<?php
namespace Filament\Notifications\Concerns;
use Closure;
trait HasBody
{
protected string | Closure | null $body = null;
public function body(string | Closure | null $body): static
{
$this->body = $body;
return $this;
}
public function getBody(): ?string
{
return $this->evaluate($this->body);
}
}