Skip to content

Commit 1be03c9

Browse files
committed
refactor(multi): updated to latest version
1 parent c363444 commit 1be03c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+13851
-10861
lines changed

.github/workflows/deploy-laravel-demo-free.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy - Demos Free
1+
name: 🚀 Deploy - Demos Free
22
run-name: ${{ inputs.is_production && '🚀' || '🧪' }} Deploy - Demos Free
33

44
on:
@@ -126,3 +126,4 @@ jobs:
126126
127127
# grant read & write permission to group & other
128128
chmod -R g+rw ${{ env.LARAVEL_CORE_DIR_NAME }}/storage
129+
chmod -R g+rw ${{ env.LARAVEL_CORE_DIR_NAME }}/database/database.sqlite

javascript-version/.env.example

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ APP_FALLBACK_LOCALE=en
1010
APP_FAKER_LOCALE=en_US
1111

1212
APP_MAINTENANCE_DRIVER=file
13-
APP_MAINTENANCE_STORE=database
13+
# APP_MAINTENANCE_STORE=database
14+
15+
PHP_CLI_SERVER_WORKERS=4
1416

1517
BCRYPT_ROUNDS=12
1618

@@ -47,11 +49,11 @@ REDIS_PASSWORD=null
4749
REDIS_PORT=6379
4850

4951
MAIL_MAILER=log
52+
MAIL_SCHEME=null
5053
MAIL_HOST=127.0.0.1
5154
MAIL_PORT=2525
5255
MAIL_USERNAME=null
5356
MAIL_PASSWORD=null
54-
MAIL_ENCRYPTION=null
5557
MAIL_FROM_ADDRESS="[email protected]"
5658
MAIL_FROM_NAME="${APP_NAME}"
5759

@@ -62,4 +64,5 @@ AWS_BUCKET=
6264
AWS_USE_PATH_STYLE_ENDPOINT=false
6365

6466
VITE_APP_NAME="${APP_NAME}"
65-
VITE_API_BASE_URL=
67+
VITE_API_BASE_URL=
68+
VITE_MAPBOX_ACCESS_TOKEN=

javascript-version/.eslintrc-auto-import.json

+7
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
"Component": true,
44
"ComponentPublicInstance": true,
55
"ComputedRef": true,
6+
"DirectiveBinding": true,
67
"EffectScope": true,
78
"ExtractDefaultPropTypes": true,
89
"ExtractPropTypes": true,
910
"ExtractPublicPropTypes": true,
1011
"InjectionKey": true,
12+
"MaybeRef": true,
13+
"MaybeRefOrGetter": true,
1114
"PropType": true,
1215
"Ref": true,
1316
"VNode": true,
@@ -85,6 +88,7 @@
8588
"onStartTyping": true,
8689
"onUnmounted": true,
8790
"onUpdated": true,
91+
"onWatcherCleanup": true,
8892
"pausableWatch": true,
8993
"provide": true,
9094
"provideLocal": true,
@@ -201,6 +205,7 @@
201205
"useFullscreen": true,
202206
"useGamepad": true,
203207
"useGeolocation": true,
208+
"useId": true,
204209
"useIdle": true,
205210
"useImage": true,
206211
"useInfiniteScroll": true,
@@ -220,6 +225,7 @@
220225
"useMemoize": true,
221226
"useMemory": true,
222227
"useMin": true,
228+
"useModel": true,
223229
"useMounted": true,
224230
"useMouse": true,
225231
"useMouseInElement": true,
@@ -270,6 +276,7 @@
270276
"useSum": true,
271277
"useSupported": true,
272278
"useSwipe": true,
279+
"useTemplateRef": true,
273280
"useTemplateRefsList": true,
274281
"useTextDirection": true,
275282
"useTextSelection": true,

javascript-version/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
/public/hot
55
/public/storage
66
/storage/*.key
7+
/storage/pail
78
/vendor
89
.env
910
.env.backup
@@ -17,6 +18,8 @@ npm-debug.log
1718
yarn-error.log
1819
/.fleet
1920
/.idea
21+
/.nova
22+
/.zed
2023

2124
# Logs
2225
logs

javascript-version/app/Models/User.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99

1010
class User extends Authenticatable
1111
{
12+
/** @use HasFactory<\Database\Factories\UserFactory> */
1213
use HasFactory, Notifiable;
1314

1415
/**
1516
* The attributes that are mass assignable.
1617
*
17-
* @var array<int, string>
18+
* @var list<string>
1819
*/
1920
protected $fillable = [
2021
'name',
@@ -25,7 +26,7 @@ class User extends Authenticatable
2526
/**
2627
* The attributes that should be hidden for serialization.
2728
*
28-
* @var array<int, string>
29+
* @var list<string>
2930
*/
3031
protected $hidden = [
3132
'password',

javascript-version/auto-imports.d.ts

+645
Large diffs are not rendered by default.

javascript-version/components.d.ts

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/* eslint-disable */
2+
// @ts-nocheck
3+
// Generated by unplugin-vue-components
4+
// Read more: https://github.com/vuejs/core/pull/3399
5+
export {}
6+
7+
/* prettier-ignore */
8+
declare module 'vue' {
9+
export interface GlobalComponents {
10+
CardStatisticsHorizontal: typeof import('./resources/js/@core/components/cards/CardStatisticsHorizontal.vue')['default']
11+
CardStatisticsVertical: typeof import('./resources/js/@core/components/cards/CardStatisticsVertical.vue')['default']
12+
CardStatisticsWithImages: typeof import('./resources/js/@core/components/cards/CardStatisticsWithImages.vue')['default']
13+
ErrorHeader: typeof import('./resources/js/components/ErrorHeader.vue')['default']
14+
MoreBtn: typeof import('./resources/js/@core/components/MoreBtn.vue')['default']
15+
RouterLink: typeof import('vue-router')['RouterLink']
16+
RouterView: typeof import('vue-router')['RouterView']
17+
ThemeSwitcher: typeof import('./resources/js/@core/components/ThemeSwitcher.vue')['default']
18+
UpgradeToPro: typeof import('./resources/js/components/UpgradeToPro.vue')['default']
19+
VueApexCharts: typeof import('vue3-apexcharts')['default']
20+
}
21+
}

javascript-version/composer.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
{
2+
"$schema": "https://getcomposer.org/schema.json",
23
"name": "laravel/laravel",
34
"type": "project",
45
"description": "The skeleton application for the Laravel framework.",
56
"keywords": ["laravel", "framework"],
67
"license": "MIT",
78
"require": {
89
"php": "^8.2",
9-
"laravel/framework": "^11.9",
10+
"laravel/framework": "^11.31",
1011
"laravel/tinker": "^2.9"
1112
},
1213
"require-dev": {
1314
"fakerphp/faker": "^1.23",
15+
"laravel/pail": "^1.1",
1416
"laravel/pint": "^1.13",
1517
"laravel/sail": "^1.26",
1618
"mockery/mockery": "^1.6",
17-
"nunomaduro/collision": "^8.0",
19+
"nunomaduro/collision": "^8.1",
1820
"phpunit/phpunit": "^11.0.1"
1921
},
2022
"autoload": {
@@ -44,6 +46,10 @@
4446
"@php artisan key:generate --ansi",
4547
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
4648
"@php artisan migrate --graceful --ansi"
49+
],
50+
"dev": [
51+
"Composer\\Config::disableProcessTimeout",
52+
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
4753
]
4854
},
4955
"extra": {

0 commit comments

Comments
 (0)