diff --git a/.env.testing b/.env.testing index 2191bfc0..84b8fb35 100644 --- a/.env.testing +++ b/.env.testing @@ -1,6 +1,6 @@ APP_NAME=Laravel APP_ENV=local -APP_KEY=base64:XP4FSfZLrj3n2MbhbOVWp4ldCbU0Ew+bhiEpHyOpxVw= +APP_KEY=base64:MzktLd8L9CrZsaNj5lDDewmUcI9VVQWq5eWMFxU5LvI= APP_DEBUG=true APP_URL=http://localhost APP_DEMO=false diff --git a/database/migrations/2022_02_17_073653_create_upload_requests_table.php b/database/migrations/2022_02_17_073653_create_upload_requests_table.php index d19b69cb..ddc5152b 100644 --- a/database/migrations/2022_02_17_073653_create_upload_requests_table.php +++ b/database/migrations/2022_02_17_073653_create_upload_requests_table.php @@ -18,8 +18,8 @@ class CreateUploadRequestsTable extends Migration $table->uuid('user_id'); $table->uuid('folder_id'); $table->enum('status', ['active', 'filled', 'expired'])->default('active'); - $table->string('email'); - $table->longText('notes'); + $table->string('email')->nullable(); + $table->longText('notes')->nullable(); $table->timestamps(); $table->charset = 'utf8mb4'; $table->collation = 'utf8mb4_unicode_ci'; diff --git a/resources/js/components/Others/CreateUploadRequestPopup.vue b/resources/js/components/Others/CreateUploadRequestPopup.vue new file mode 100644 index 00000000..195641f9 --- /dev/null +++ b/resources/js/components/Others/CreateUploadRequestPopup.vue @@ -0,0 +1,167 @@ + + + diff --git a/resources/js/components/Others/Forms/CopyInput.vue b/resources/js/components/Others/Forms/CopyInput.vue index 5817c4c0..3a35352e 100644 --- a/resources/js/components/Others/Forms/CopyInput.vue +++ b/resources/js/components/Others/Forms/CopyInput.vue @@ -1,6 +1,6 @@