invoiceninja/tests/Feature/PdfMaker/Business.php

14 lines
215 B
PHP

<?php
namespace Tests\Feature\PdfMaker;
class Business
{
public function html()
{
return file_get_contents(
base_path('tests/Feature/PdfMaker/designs/business.html')
);
}
}