diff --git a/app/Models/Faq.php b/app/Models/Faq.php new file mode 100644 index 0000000..c499d2e --- /dev/null +++ b/app/Models/Faq.php @@ -0,0 +1,11 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('faqs'); + } +}; diff --git a/database/migrations/2024_05_17_123252_create_messages_table.php b/database/migrations/2024_05_17_123252_create_messages_table.php new file mode 100644 index 0000000..c82dd59 --- /dev/null +++ b/database/migrations/2024_05_17_123252_create_messages_table.php @@ -0,0 +1,27 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('messages'); + } +}; diff --git a/database/migrations/2024_05_17_123252_create_notifications_table.php b/database/migrations/2024_05_17_123252_create_notifications_table.php new file mode 100644 index 0000000..ced23a8 --- /dev/null +++ b/database/migrations/2024_05_17_123252_create_notifications_table.php @@ -0,0 +1,27 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('notifications'); + } +}; diff --git a/database/migrations/2024_05_17_123252_create_orders_table.php b/database/migrations/2024_05_17_123252_create_orders_table.php new file mode 100644 index 0000000..6d50d34 --- /dev/null +++ b/database/migrations/2024_05_17_123252_create_orders_table.php @@ -0,0 +1,27 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('orders'); + } +}; diff --git a/database/migrations/2024_05_17_123252_create_payments_table.php b/database/migrations/2024_05_17_123252_create_payments_table.php new file mode 100644 index 0000000..d7c31e5 --- /dev/null +++ b/database/migrations/2024_05_17_123252_create_payments_table.php @@ -0,0 +1,27 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('payments'); + } +}; diff --git a/database/migrations/2024_05_17_123252_create_referrals_table.php b/database/migrations/2024_05_17_123252_create_referrals_table.php new file mode 100644 index 0000000..0c84d32 --- /dev/null +++ b/database/migrations/2024_05_17_123252_create_referrals_table.php @@ -0,0 +1,27 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('referrals'); + } +}; diff --git a/resources/views/components/application-logo.blade.php b/resources/views/components/application-logo.blade.php index 46579cf..4214853 100644 --- a/resources/views/components/application-logo.blade.php +++ b/resources/views/components/application-logo.blade.php @@ -1,3 +1,3 @@ - - - +
+ Scholarspaceā„¢ +
diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index b59af15..06cc0ef 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -10,6 +10,7 @@ + @vite(['resources/css/app.css', 'resources/js/app.js']) diff --git a/resources/views/layouts/guest.blade.php b/resources/views/layouts/guest.blade.php index 11feb47..dbd9813 100644 --- a/resources/views/layouts/guest.blade.php +++ b/resources/views/layouts/guest.blade.php @@ -10,6 +10,7 @@ + @vite(['resources/css/app.css', 'resources/js/app.js']) @@ -22,7 +23,7 @@ -
+
{{ $slot }}