diff --git a/config/database.php b/config/database.php index b42d9b3..aeabec6 100644 --- a/config/database.php +++ b/config/database.php @@ -56,7 +56,7 @@ return [ 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, - 'strict' => true, + 'strict' => false, 'engine' => null, 'options' => extension_loaded('pdo_mysql') ? array_filter([ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), diff --git a/config/filesystems.php b/config/filesystems.php index 45a038f..f8839a7 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -73,12 +73,13 @@ return [ ], 'media' => [ - 'driver' => 'minio', + 'driver' => 's3', 'key' => env('MINIO_KEY', 'your minio server key'), 'secret' => env('MINIO_SECRET', 'your minio server secret'), 'region' => 'us-east-1', 'bucket' => env('MINIO_BUCKET','your minio bucket name'), - 'endpoint' => env('MINIO_ENDPOINT','http://localhost:8000') + 'endpoint' => env('MINIO_ENDPOINT','http://localhost:8000'), + 'url' => 'https://cdn.willaspace.com/'. env('MINIO_BUCKET') ], ], diff --git a/resources/js/Global/components/Drawer/SideBar.vue b/resources/js/Global/components/Drawer/SideBar.vue index 86fb983..00569cf 100644 --- a/resources/js/Global/components/Drawer/SideBar.vue +++ b/resources/js/Global/components/Drawer/SideBar.vue @@ -8,7 +8,7 @@
{{ getAuthUser.name }}
{{ getCurrentTime }}
-
{{ new Date() | moment("dddd jDD jMMMM jYYYY") }}
+
{{ currentDate() }}