Skip to content

Commit 66d25fa

Browse files
authored
Merge pull request #1977 from Blair2004/v5.0.x
V5.0.x
2 parents 0245ec9 + 1559d8e commit 66d25fa

27 files changed

+51
-79
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ Do you plan to contribute? That's awesome. We don't have that much developer on
7373

7474
**To install Node.js dependencies**
7575
```
76-
npm run install
76+
npm install
7777
```
7878

7979
**To watch the Vue compoment changes (Vue.js)**
8080
```
81-
npm run watch
81+
npm run dev
8282
```
8383

8484
**To watch the project changes (TailwindCSS)**

config/nexopos.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* This is the core version of NexoPOS. This is used to displays on the
1010
* dashboard and to ensure a compatibility with the modules.
1111
*/
12-
'version' => '5.2.6',
12+
'version' => '5.2.7',
1313

1414
/**
1515
* --------------------------------------------------------------------

config/sanctum.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
|
1616
*/
1717

18-
'stateful' => explode( ',', env( 'SANCTUM_STATEFUL_DOMAINS', sprintf(
18+
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
1919
'%s%s',
2020
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
2121
Sanctum::currentApplicationUrlWithPort()
22-
) ) ),
22+
))),
2323

2424
/*
2525
|--------------------------------------------------------------------------
@@ -61,7 +61,7 @@
6161
|
6262
*/
6363

64-
'token_prefix' => env( 'SANCTUM_TOKEN_PREFIX', '' ),
64+
'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''),
6565

6666
/*
6767
|--------------------------------------------------------------------------

database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@
1111
*/
1212
public function up(): void
1313
{
14-
Schema::create( 'personal_access_tokens', function ( Blueprint $table ) {
14+
Schema::create('personal_access_tokens', function (Blueprint $table) {
1515
$table->id();
16-
$table->morphs( 'tokenable' );
17-
$table->string( 'name' );
18-
$table->string( 'token', 64 )->unique();
19-
$table->text( 'abilities' )->nullable();
20-
$table->timestamp( 'last_used_at' )->nullable();
21-
$table->timestamp( 'expires_at' )->nullable();
16+
$table->morphs('tokenable');
17+
$table->string('name');
18+
$table->string('token', 64)->unique();
19+
$table->text('abilities')->nullable();
20+
$table->timestamp('last_used_at')->nullable();
21+
$table->timestamp('expires_at')->nullable();
2222
$table->timestamps();
23-
} );
23+
});
2424
}
2525

2626
/**
2727
* Reverse the migrations.
2828
*/
2929
public function down(): void
3030
{
31-
Schema::dropIfExists( 'personal_access_tokens' );
31+
Schema::dropIfExists('personal_access_tokens');
3232
}
3333
};

public/build/assets/app-d6800ea6.js renamed to public/build/assets/app-b2022351.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/manage-products-cca5b591.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/build/assets/manage-products-cecb7581.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/ns-pos-7cc83bf8.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/ns-pos-a91ba1d6.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/build/assets/ns-pos-cart-32f5a2e0.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)