2020-07-22 14:34:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Tests\Feature\PdfMaker;
|
|
|
|
|
|
2020-08-11 17:19:52 +02:00
|
|
|
use App\Services\PdfMaker\Designs\Utilities\DesignHelpers;
|
|
|
|
|
|
2020-07-22 14:34:15 +02:00
|
|
|
class ExampleDesign
|
|
|
|
|
{
|
2020-08-11 17:19:52 +02:00
|
|
|
use DesignHelpers;
|
|
|
|
|
|
|
|
|
|
public $client;
|
|
|
|
|
|
|
|
|
|
public $entity;
|
|
|
|
|
|
|
|
|
|
public $context;
|
|
|
|
|
|
2020-07-22 14:34:15 +02:00
|
|
|
public function html()
|
|
|
|
|
{
|
|
|
|
|
return file_get_contents(
|
|
|
|
|
base_path('tests/Feature/PdfMaker/example-design.html')
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|