diff --git a/app/Models/Test.php b/app/Models/Test.php new file mode 100644 index 0000000..ec4f091 --- /dev/null +++ b/app/Models/Test.php @@ -0,0 +1,10 @@ +id(); + $table->string('dsfdasfdasfdas'); + $table->boolean('fdasfdasf'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('tests'); + } +}; diff --git a/resources/views/livewire/monitors/monitor-dashboard.blade.php b/resources/views/livewire/monitors/monitor-dashboard.blade.php new file mode 100644 index 0000000..fcfaedf --- /dev/null +++ b/resources/views/livewire/monitors/monitor-dashboard.blade.php @@ -0,0 +1,30 @@ +monitor = $monitor; + } + +}; ?> + + +
+
+

Overview

+
+ {{$total_issues_closed}} +
+
+
diff --git a/resources/views/livewire/monitors/show.blade.php b/resources/views/livewire/monitors/show.blade.php index b1d4b10..135fb05 100644 --- a/resources/views/livewire/monitors/show.blade.php +++ b/resources/views/livewire/monitors/show.blade.php @@ -19,6 +19,10 @@ public function mount(Monitor $monitor) +
+ +
+