Skip to content

Commit

Permalink
Update README and fix minor error
Browse files Browse the repository at this point in the history
  • Loading branch information
zanechua committed Jan 29, 2019
1 parent 4ec59a4 commit c96d01b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
Empty file modified app/Http/Controllers/NotificationController.php
100755 → 100644
Empty file.
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ php artisan storage:link
php artisan serve --host 0.0.0.0
```

## Security
If you discover a security vulnerability within this application, please send an e-mail to Zane J. Chua at zane@poowf.com. All security vulnerabilities will be addressed promptly.

## License

Copyright 2018 Zane J. Chua
Expand Down
Empty file modified resources/assets/sass/style.scss
100755 → 100644
Empty file.
Empty file modified resources/views/pages/client/index.blade.php
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions resources/views/pages/invoice/index_archived.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
<td>{{ $invoice->nice_invoice_id }}</td>
<td>${{ $invoice->totalmoneyformat }}</td>
<td>{{ $invoice->duedate->format('d F, Y') }}</td>
<td>{{ $invoice->getClient()->companyname }}</td>
<td>{{ $invoice->getClient()->contactphone }}</td>
<td>{{ $invoice->getClient()->companyname ?? '-' }}</td>
<td>{{ $invoice->getClient()->contactphone ?? '-' }}</td>
<td>
@if ($invoice->status == App\Models\Invoice::STATUS_OVERDUE)
<span class="alt-badge error">{{ $invoice->statustext() }}</span>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/pages/quote/index_archived.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<td>{{ $quote->nice_quote_id }}</td>
<td>${{ $quote->totalmoneyformat }}</td>
<td>{{ $quote->duedate->format('d F, Y') }}</td>
<td>{{ $quote->getClient()->companyname }}</td>
<td>{{ $quote->getClient()->contactphone }}</td>
<td>{{ $quote->getClient()->companyname ?? '-' }}</td>
<td>{{ $quote->getClient()->contactphone ?? '-' }}</td>
<td>
@if ($quote->status == App\Models\Quote::STATUS_DRAFT)
<span class="alt-badge">{{ $quote->statustext() }}</span>
Expand Down

0 comments on commit c96d01b

Please sign in to comment.