mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 19:21:33 +00:00
21 lines
387 B
Plaintext
21 lines
387 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Mail;
|
|
|
|
class Mailable
|
|
{
|
|
/**
|
|
* @param view-string $view
|
|
* @param array<string, mixed> $data
|
|
* @return $this
|
|
*/
|
|
public function markdown($view, array $data = []);
|
|
|
|
/**
|
|
* @param view-string $view
|
|
* @param array<string, mixed> $data
|
|
* @return $this
|
|
*/
|
|
public function view($view, array $data = []);
|
|
}
|