Clarify sample values in invoice design page

This commit is contained in:
Hillel Coren 2016-12-19 20:30:27 +02:00
parent 2f8344df66
commit db26b169cd

View File

@ -555,12 +555,12 @@ class AccountController extends BaseController
$document = new stdClass(); $document = new stdClass();
$client->name = 'Sample Client'; $client->name = 'Sample Client';
$client->address1 = trans('texts.address1'); $client->address1 = '10 Main St.';
$client->city = trans('texts.city'); $client->city = 'New York';
$client->state = trans('texts.state'); $client->state = 'NY';
$client->postal_code = trans('texts.postal_code'); $client->postal_code = '10000';
$client->work_phone = trans('texts.work_phone'); $client->work_phone = '(212) 555-0000';
$client->work_email = trans('texts.work_id'); $client->work_email = 'sample@example.com';
$invoice->invoice_number = '0000'; $invoice->invoice_number = '0000';
$invoice->invoice_date = Utils::fromSqlDate(date('Y-m-d')); $invoice->invoice_date = Utils::fromSqlDate(date('Y-m-d'));