diff --git a/.gitignore b/.gitignore
index d45aa27..6e7f083 100644
--- a/.gitignore
+++ b/.gitignore
@@ -107,3 +107,4 @@ fabric.properties
 .directory
 .directory
 public
+_ide_helper.php
diff --git a/app/Filament/Admin/Resources/InvoiceReportResource.php b/app/Filament/Admin/Resources/InvoiceReportResource.php
index 787e095..3df58fe 100644
--- a/app/Filament/Admin/Resources/InvoiceReportResource.php
+++ b/app/Filament/Admin/Resources/InvoiceReportResource.php
@@ -49,8 +49,10 @@ public static function form(Form $form): Form
                     DatePicker::make('date_end')
                         ->required()
                         ->default(today()),
-                ])->columns(2),
-            ]);
+                ])
+                    ->columns(2)
+                    ->columnSpan(3),
+            ])->columns(3);
     }
 
     public static function table(Table $table): Table
@@ -73,15 +75,14 @@ public static function table(Table $table): Table
                     ->label('End Date')
                     ->date('Y-m-d'),
                 TextColumn::make('total')
-                    ->label('Balance Due')
                     ->weight(FontWeight::Bold)
                     ->money(),
+                TextColumn::make('balance')
+                    ->weight(FontWeight::Bold)
+                    ->money(),
+                //                    ->getStateUsing(fn (Invoice))
             ])
-            ->defaultSort('id', 'desc')
-
-            ->filters([
-            ])
-            ->actions([]);
+            ->defaultSort('id', 'desc');
     }
 
     public static function canAccess(): bool
diff --git a/app/Filament/Admin/Resources/InvoiceResource.php b/app/Filament/Admin/Resources/InvoiceResource.php
index 80ea3aa..fa0e94b 100644
--- a/app/Filament/Admin/Resources/InvoiceResource.php
+++ b/app/Filament/Admin/Resources/InvoiceResource.php
@@ -112,7 +112,7 @@ public static function form(Form $form): Form
                                     ->content(fn (Invoice $record): ?string => $record->internal_id),
 
                                 Placeholder::make('Amounts')
-                                    ->content(fn (Invoice $record): ?string => 'Total: $'.$record->total.', balance: $'.$record->remainingBalance()),
+                                    ->content(fn (Invoice $record): ?string => 'Total: $'.number_format($record->total, 2).', balance: $'.number_format($record->remainingBalance(), 2)),
 
                                 Placeholder::make('Tax Rates when created')
                                     ->content(fn (Invoice $record): ?string => $record->gst_rate.'% GST, '.$record->pst_rate.'% PST, '.$record->hst_rate.'% HST'),
@@ -123,7 +123,8 @@ public static function form(Form $form): Form
 
                             ])
                             ->columnSpan(1)
-                            ->hidden(fn (?Invoice $record) => $record === null),
+                            ->hidden(fn (?Invoice $record) => $record === null)
+                            ->extraAttributes(['class' => 'h-full']),
 
                     ])
                     ->columns(3)
diff --git a/app/Filament/Admin/Resources/OrderResource.php b/app/Filament/Admin/Resources/OrderResource.php
index 854342c..3d0b939 100644
--- a/app/Filament/Admin/Resources/OrderResource.php
+++ b/app/Filament/Admin/Resources/OrderResource.php
@@ -28,6 +28,7 @@
 use Filament\Resources\Resource;
 use Filament\Support\Enums\MaxWidth;
 use Filament\Tables;
+use Filament\Tables\Columns\IconColumn\IconColumnSize;
 use Filament\Tables\Columns\TextColumn;
 use Filament\Tables\Table;
 use Guava\FilamentClusters\Forms\Cluster;
@@ -118,6 +119,10 @@ public static function form(Form $form): Form
                                 ->label('Order ID')
                                 ->content(fn (Order $record): ?string => $record->internal_po),
 
+                            Placeholder::make('total_service_price')
+                                ->label('Total service price')
+                                ->content(fn (Order $record): ?string => '$'.number_format($record->total_service_price, 2)),
+
                             Placeholder::make('created_at')
                                 ->label('Created')
                                 ->content(fn (Order $record): ?string => $record->created_at?->diffForHumans()),
@@ -127,7 +132,8 @@ public static function form(Form $form): Form
                                 ->content(fn (Order $record): ?string => $record->updated_at?->diffForHumans()),
                         ])
                         ->columnSpan(1)
-                        ->hidden(fn (?Order $record) => $record === null),
+                        ->hidden(fn (?Order $record) => $record === null)
+                        ->extraAttributes(['class' => 'h-full']),
                 ])
                 ->columns(6)
                 ->columnSpan(2),
@@ -144,21 +150,29 @@ public static function form(Form $form): Form
                         ->datalist(OrderProduct::all()->unique('color')->pluck('color')->toArray()),
                     Cluster::make([
                         TextInput::make('xs')
-                            ->placeholder('xs'),
+                            ->placeholder('xs')
+                            ->rules('numeric'),
                         TextInput::make('s')
-                            ->placeholder('s'),
+                            ->placeholder('s')
+                            ->rules('numeric'),
                         TextInput::make('m')
-                            ->placeholder('m'),
+                            ->placeholder('m')
+                            ->rules('numeric'),
                         TextInput::make('l')
-                            ->placeholder('l'),
+                            ->placeholder('l')
+                            ->rules('numeric'),
                         TextInput::make('xl')
-                            ->placeholder('xl'),
+                            ->placeholder('xl')
+                            ->rules('numeric'),
                         TextInput::make('2xl')
-                            ->placeholder('2xl'),
+                            ->placeholder('2xl')
+                            ->rules('numeric'),
                         TextInput::make('3xl')
-                            ->placeholder('3xl'),
+                            ->placeholder('3xl')
+                            ->rules('numeric'),
                         TextInput::make('osfa')
-                            ->placeholder('osfa'),
+                            ->placeholder('osfa')
+                            ->rules('numeric'),
                     ])
                         ->label('Sizes'),
                 ])
@@ -197,13 +211,16 @@ public static function form(Form $form): Form
                                 ->label('Logo Name'),
                             TextInput::make('serviceFileSetupNumber')
                                 ->label('Setup')
-                                ->columnSpan(1),
+                                ->columnSpan(1)
+                                ->rules('numeric'),
 
                             Cluster::make([
                                 TextInput::make('serviceFileWidth')
-                                    ->prefix('w'),
+                                    ->prefix('w')
+                                    ->rules('numeric'),
                                 TextInput::make('serviceFileHeight')
-                                    ->prefix('h'),
+                                    ->prefix('h')
+                                    ->rules('numeric'),
                             ])
                                 ->label('Dimensions (inches)')
                                 ->columnSpan(4),
@@ -212,12 +229,14 @@ public static function form(Form $form): Form
                                 ->label('Quantity')
                                 ->live()
                                 ->prefix('#')
-                                ->columnSpan(2),
+                                ->columnSpan(2)
+                                ->rules('numeric'),
 
                             TextInput::make('amount_price')
                                 ->label('Amount')
                                 ->prefix('$')
-                                ->columnSpan(2),
+                                ->columnSpan(2)
+                                ->rules('numeric'),
                         ]),
 
                     Grid::make(9)
@@ -254,7 +273,7 @@ public static function table(Table $table): Table
                             ? 'lucide-calendar-clock' : ($record->rush
                                 ? OrderAttributes::rush->getIcon() : null);
                     })
-                    ->size(Tables\Columns\IconColumn\IconColumnSize::Medium),
+                    ->size(IconColumnSize::Medium),
 
                 TextColumn::make('internal_po')
                     ->label('Internal PO')
diff --git a/app/Filament/Admin/Resources/TaxRateResource.php b/app/Filament/Admin/Resources/TaxRateResource.php
index 64d1a62..09197b3 100644
--- a/app/Filament/Admin/Resources/TaxRateResource.php
+++ b/app/Filament/Admin/Resources/TaxRateResource.php
@@ -51,7 +51,8 @@ public static function form(Form $form): Form
                             ->content(fn (TaxRate $record): ?string => $record->updated_at?->diffForHumans()),
                     ])
                     ->columnSpan(1)
-                    ->hidden(fn (?TaxRate $record) => $record === null),
+                    ->hidden(fn (?TaxRate $record) => $record === null)
+                    ->extraAttributes(['class' => 'h-full']),
             ])->columns(3);
     }
 
@@ -93,9 +94,9 @@ public static function canAccess(): bool
     public static function getPages(): array
     {
         return [
-            'index'  => Pages\ListTaxRates::route('/'),
-            'create' => Pages\CreateTaxRate::route('/create'),
-            'edit'   => Pages\EditTaxRate::route('/{record}/edit'),
+            'index' => Pages\ListTaxRates::route('/'),
+            //            'create' => Pages\CreateTaxRate::route('/create'),
+            //            'edit'   => Pages\EditTaxRate::route('/{record}/edit'),
         ];
     }
 }
diff --git a/app/Models/Invoice.php b/app/Models/Invoice.php
index 7ccc41f..9052d1f 100644
--- a/app/Models/Invoice.php
+++ b/app/Models/Invoice.php
@@ -45,7 +45,8 @@ class Invoice extends Model
         'has_gst'    => 'boolean',
         'has_pst'    => 'boolean',
         'has_hst'    => 'boolean',
-        'date'       => 'datetime',
+        'date'       => 'date',
+        'due_date'   => 'date',
         'status'     => InvoiceStatus::class,
         'subtotal'   => 'float',
         'pst_amount' => 'float',
diff --git a/app/Models/InvoiceReport.php b/app/Models/InvoiceReport.php
index e2ddd65..3570faf 100644
--- a/app/Models/InvoiceReport.php
+++ b/app/Models/InvoiceReport.php
@@ -25,6 +25,7 @@ class InvoiceReport extends Model
 
     protected $appends = [
         'total',
+        'balance',
     ];
 
     protected $casts = [
@@ -61,6 +62,11 @@ public function getTotalAttribute()
         return $this->invoices()->sum('total');
     }
 
+    public function getBalanceAttribute()
+    {
+        return $this->invoices->sum(fn (Invoice $invoice) => $invoice->remainingBalance());
+    }
+
     public function customer(): BelongsTo
     {
         return $this->belongsTo(Customer::class);
diff --git a/app/Models/OrderProduct.php b/app/Models/OrderProduct.php
index b00f3ea..843503d 100644
--- a/app/Models/OrderProduct.php
+++ b/app/Models/OrderProduct.php
@@ -21,6 +21,8 @@ class OrderProduct extends Model
         'color',
     ];
 
+    protected $touches = ['order'];
+
     public function totalQuantity(): int
     {
         return array_sum($this->productSizes()->pluck('amount')->toArray());
diff --git a/app/Models/ProductService.php b/app/Models/ProductService.php
index c1b8d24..811263a 100644
--- a/app/Models/ProductService.php
+++ b/app/Models/ProductService.php
@@ -33,6 +33,8 @@ class ProductService extends Model
         'price',
     ];
 
+    protected $touches = ['order'];
+
     public function getPriceAttribute(): float
     {
         return number_format($this->amount * $this->amount_price, 2);
diff --git a/app/Observers/InvoiceObserver.php b/app/Observers/InvoiceObserver.php
index b5d86a3..2c86548 100644
--- a/app/Observers/InvoiceObserver.php
+++ b/app/Observers/InvoiceObserver.php
@@ -23,7 +23,7 @@ public function creating(Invoice $invoice): void
     public function created(Invoice $invoice): void
     {
 
-        $invoice->internal_id = 'INV4'.str_pad($invoice->id, 5, '0', STR_PAD_LEFT);
+        $invoice->internal_id = 'INV4'.str_pad($invoice->id, 4, '0', STR_PAD_LEFT);
         $invoice->saveQuietly();
 
         $invoice->calculateTotals();
diff --git a/composer.json b/composer.json
index ff54a78..e0e7c17 100644
--- a/composer.json
+++ b/composer.json
@@ -17,6 +17,7 @@
         "spatie/laravel-pdf": "^1.5"
     },
     "require-dev": {
+        "barryvdh/laravel-ide-helper": "^3.5",
         "fakerphp/faker": "^1.23",
         "larastan/larastan": "^2.0",
         "laravel/pint": "^1.17",
diff --git a/composer.lock b/composer.lock
index 38b51ca..6ec0ef3 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "0c966bb4f2402b99c0398908b98716ba",
+    "content-hash": "766975bfee107a4085b03319fa3b9276",
     "packages": [
         {
             "name": "anourvalar/eloquent-serialize",
@@ -7955,6 +7955,152 @@
         }
     ],
     "packages-dev": [
+        {
+            "name": "barryvdh/laravel-ide-helper",
+            "version": "v3.5.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/barryvdh/laravel-ide-helper.git",
+                "reference": "980a87e250fc2a7558bc46e07f61c7594500ea53"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/980a87e250fc2a7558bc46e07f61c7594500ea53",
+                "reference": "980a87e250fc2a7558bc46e07f61c7594500ea53",
+                "shasum": ""
+            },
+            "require": {
+                "barryvdh/reflection-docblock": "^2.3",
+                "composer/class-map-generator": "^1.0",
+                "ext-json": "*",
+                "illuminate/console": "^11.15",
+                "illuminate/database": "^11.15",
+                "illuminate/filesystem": "^11.15",
+                "illuminate/support": "^11.15",
+                "php": "^8.2"
+            },
+            "require-dev": {
+                "ext-pdo_sqlite": "*",
+                "friendsofphp/php-cs-fixer": "^3",
+                "illuminate/config": "^11.15",
+                "illuminate/view": "^11.15",
+                "mockery/mockery": "^1.4",
+                "orchestra/testbench": "^9.2",
+                "phpunit/phpunit": "^10.5",
+                "spatie/phpunit-snapshot-assertions": "^4 || ^5",
+                "vimeo/psalm": "^5.4",
+                "vlucas/phpdotenv": "^5"
+            },
+            "suggest": {
+                "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
+                    ]
+                },
+                "branch-alias": {
+                    "dev-master": "3.5-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Barryvdh\\LaravelIdeHelper\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Barry vd. Heuvel",
+                    "email": "barryvdh@gmail.com"
+                }
+            ],
+            "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
+            "keywords": [
+                "autocomplete",
+                "codeintel",
+                "dev",
+                "helper",
+                "ide",
+                "laravel",
+                "netbeans",
+                "phpdoc",
+                "phpstorm",
+                "sublime"
+            ],
+            "support": {
+                "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
+                "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.5.4"
+            },
+            "funding": [
+                {
+                    "url": "https://fruitcake.nl",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/barryvdh",
+                    "type": "github"
+                }
+            ],
+            "time": "2025-01-14T09:07:00+00:00"
+        },
+        {
+            "name": "barryvdh/reflection-docblock",
+            "version": "v2.3.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
+                "reference": "b6ff9f93603561f50e53b64310495d20b8dff5d8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/b6ff9f93603561f50e53b64310495d20b8dff5d8",
+                "reference": "b6ff9f93603561f50e53b64310495d20b8dff5d8",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^8.5.14|^9"
+            },
+            "suggest": {
+                "dflydev/markdown": "~1.0",
+                "erusev/parsedown": "~1.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-0": {
+                    "Barryvdh": [
+                        "src/"
+                    ]
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Mike van Riel",
+                    "email": "mike.vanriel@naenius.com"
+                }
+            ],
+            "support": {
+                "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.3.1"
+            },
+            "time": "2025-01-18T19:26:32+00:00"
+        },
         {
             "name": "brianium/paratest",
             "version": "v7.7.0",
@@ -8048,6 +8194,158 @@
             ],
             "time": "2024-12-11T14:50:44+00:00"
         },
+        {
+            "name": "composer/class-map-generator",
+            "version": "1.6.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/class-map-generator.git",
+                "reference": "ffe442c5974c44a9343e37a0abcb1cc37319f5b9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/class-map-generator/zipball/ffe442c5974c44a9343e37a0abcb1cc37319f5b9",
+                "reference": "ffe442c5974c44a9343e37a0abcb1cc37319f5b9",
+                "shasum": ""
+            },
+            "require": {
+                "composer/pcre": "^2.1 || ^3.1",
+                "php": "^7.2 || ^8.0",
+                "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
+            },
+            "require-dev": {
+                "phpstan/phpstan": "^1.12 || ^2",
+                "phpstan/phpstan-deprecation-rules": "^1 || ^2",
+                "phpstan/phpstan-phpunit": "^1 || ^2",
+                "phpstan/phpstan-strict-rules": "^1.1 || ^2",
+                "phpunit/phpunit": "^8",
+                "symfony/filesystem": "^5.4 || ^6"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\ClassMapGenerator\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "https://seld.be"
+                }
+            ],
+            "description": "Utilities to scan PHP code and generate class maps.",
+            "keywords": [
+                "classmap"
+            ],
+            "support": {
+                "issues": "https://github.com/composer/class-map-generator/issues",
+                "source": "https://github.com/composer/class-map-generator/tree/1.6.0"
+            },
+            "funding": [
+                {
+                    "url": "https://packagist.com",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/composer",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2025-02-05T10:05:34+00:00"
+        },
+        {
+            "name": "composer/pcre",
+            "version": "3.3.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/pcre.git",
+                "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
+                "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.4 || ^8.0"
+            },
+            "conflict": {
+                "phpstan/phpstan": "<1.11.10"
+            },
+            "require-dev": {
+                "phpstan/phpstan": "^1.12 || ^2",
+                "phpstan/phpstan-strict-rules": "^1 || ^2",
+                "phpunit/phpunit": "^8 || ^9"
+            },
+            "type": "library",
+            "extra": {
+                "phpstan": {
+                    "includes": [
+                        "extension.neon"
+                    ]
+                },
+                "branch-alias": {
+                    "dev-main": "3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\Pcre\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                }
+            ],
+            "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+            "keywords": [
+                "PCRE",
+                "preg",
+                "regex",
+                "regular expression"
+            ],
+            "support": {
+                "issues": "https://github.com/composer/pcre/issues",
+                "source": "https://github.com/composer/pcre/tree/3.3.2"
+            },
+            "funding": [
+                {
+                    "url": "https://packagist.com",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/composer",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2024-11-12T16:29:46+00:00"
+        },
         {
             "name": "fakerphp/faker",
             "version": "v1.24.1",
diff --git a/public/invoicereport-tnr0005.pdf b/public/invoicereport-tnr0005.pdf
index 6072b7d..79dffc5 100644
Binary files a/public/invoicereport-tnr0005.pdf and b/public/invoicereport-tnr0005.pdf differ
diff --git a/resources/views/pdf/invoice-report.blade.php b/resources/views/pdf/invoice-report.blade.php
index eaef590..184b70b 100644
--- a/resources/views/pdf/invoice-report.blade.php
+++ b/resources/views/pdf/invoice-report.blade.php
@@ -72,7 +72,7 @@
             </div>
             <br>
             <div>
-                ${{number_format($invoiceReport->total, 2)}}
+                ${{number_format($invoiceReport->balance, 2)}}
             </div>
         </div>
     </div>
@@ -95,10 +95,10 @@
             <tr>
                 <td>{{Date::make($invoice->created_at)->format('Y-m-d')}}</td>
                 <td>{{$invoice->internal_id}}</td>
-                <td class="text-end">${{$invoice->subtotal}}</td>
+                <td class="text-end">${{number_format($invoice->subtotal, 2)}}</td>
                 <td class="text-end">${{number_format($invoice->gst_amount, 2)}}</td>
                 <td class="text-end">{{!$invoice->pst_amount ? '-' : '$'.number_format($invoice->pst_amount, 2)}}</td>
-                <td class="text-end">${{$invoice->total}}</td>
+                <td class="text-end">${{number_format($invoice->remainingBalance(), 2)}}</td>
                 <td class="text-end">{{$invoice->status->value}}</td>
             </tr>
         @endforeach
diff --git a/resources/views/pdf/invoice.blade.php b/resources/views/pdf/invoice.blade.php
index 78a1aac..c2645c1 100644
--- a/resources/views/pdf/invoice.blade.php
+++ b/resources/views/pdf/invoice.blade.php
@@ -30,9 +30,9 @@
                 BILL TO
             </div>
             <div>
-                {{$invoice->customer->company_name}} <br>
-                {{$invoice->customer->billing_address_line_1}} <br>
-                {{$invoice->customer->billing_address_line_2}} <br>
+                {{$invoice->customer->company_name ?? ''}} <br>
+                {{$invoice->customer->billing_address_line_1 ?? ''}} <br>
+                {{$invoice->customer->billing_address_line_2 ?? ''}} <br>
             </div>
         </div>
 
@@ -50,13 +50,19 @@
 
         <div>
             <div>
-                {{$invoice->internal_id}}
+                @if(isset($invoice->internal_id))
+                    {{$invoice->internal_id}}
+                @endif
             </div>
             <div>
-                {{$invoice->date}}
+                @if(isset($invoice->date))
+                    {{$invoice->date->format('Y-m-d')}}
+                @endif
             </div>
             <div>
-                {{$invoice->due_date}}
+                @if(isset($invoice->due_date))
+                    {{$invoice->due_date->format('Y-m-d')}}
+                @endif
             </div>
         </div>
     </div>
@@ -110,7 +116,7 @@
             <div>${{number_format($invoice->pst_amount, 2)}}</div>
             <div>${{number_format($invoice->total, 2)}}</div>
             <br>
-            <div class="fw-bold">${{number_format($invoice->total, 2)}}</div>
+            <div class="fw-bold">${{number_format($invoice->remainingBalance(), 2)}}</div>
         </div>
 
         <div class="fw-bold text-end">
diff --git a/resources/views/pdf/order.blade.php b/resources/views/pdf/order.blade.php
index 88e8868..bc4820f 100644
--- a/resources/views/pdf/order.blade.php
+++ b/resources/views/pdf/order.blade.php
@@ -1,6 +1,6 @@
 @extends('layouts.pdf')
 
-<title>Top Notch Order {{$order->internal_po}}</title>
+<title>Top Notch Order {{$order->internal_po ?? ''}}</title>
 
 <div class="container-fluid ">
     <div class="">
@@ -135,7 +135,7 @@
         <!-- Products Table -->
 
         <div class="row mt-4">
-            <table class="table table-striped" style="font-size: 11px;">
+            <table class="table table-striped" style="font-size: 12px;">
                 <thead class="opacity-50 fw-normal">
                 <th>SKU</th>
                 <th>Product Name</th>
@@ -183,7 +183,7 @@
 
         <!-- Services Table -->
         <div class="row mt-2">
-            <table class="table table-striped" style="font-size: 11px;">
+            <table class="table table-striped" style="font-size: 12px;">
                 <thead class="opacity-50 fw-normal">
                 <th>Placement & Service</th>
                 <th class="w-50">Logo Name & Instructions</th>
@@ -201,7 +201,7 @@
                             </div>
                             <br>
                             <div class="text-uppercase">
-                                <code style="font-size: 11px">
+                                <code style="font-size: 12px">
                                     {{$service->serviceFile->code}}
                                 </code>
                             </div>
diff --git a/tests/Unit/InvoiceTest.php b/tests/Unit/InvoiceTest.php
index 4fc13fd..63ecc94 100644
--- a/tests/Unit/InvoiceTest.php
+++ b/tests/Unit/InvoiceTest.php
@@ -50,7 +50,7 @@
         ->assertHasNoErrors();
 
     $this->assertDatabaseHas('invoices', [
-        'internal_id' => 'INV400001',
+        'internal_id' => 'INV40001',
         'customer_id' => $formData['customer_id'],
         'status'      => $formData['status'],
         'has_gst'     => $formData['has_gst'],
@@ -61,7 +61,7 @@
         'hst_rate'    => $hst_rate,
     ]);
 
-    $invoice = Invoice::where('internal_id', 'INV400001')->firstOrFail();
+    $invoice = Invoice::where('internal_id', 'INV40001')->firstOrFail();
 
     $this->assertEquals($invoice->orders->isEmpty(), true);
 });
diff --git a/tests/Unit/QuoteTest.php b/tests/Unit/QuoteTest.php
index 474d958..7e7a0c6 100644
--- a/tests/Unit/QuoteTest.php
+++ b/tests/Unit/QuoteTest.php
@@ -88,7 +88,10 @@
                 'width'         => 1.5,
                 'height'        => 2.5,
                 'color_amount'  => 2,
-                'color_match'   => 5.10,
+                'setup_amount'  => 2,
+                'run_charge'    => 10,
+                'color_match'   => true,
+                'color_change'  => true,
                 'flash'         => 5.20,
                 'fleece'        => 5.30,
                 'poly_ink'      => 5.40,