Skip to content

Commit 78ef3dd

Browse files
committed
update repo nova greeter using fork
1 parent e70644e commit 78ef3dd

File tree

14 files changed

+313
-318
lines changed

14 files changed

+313
-318
lines changed

app/Helpers/Cetak.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use App\Models\NaskahKeluar;
77
use App\Models\UnitKerja;
88
use Illuminate\Support\Facades\Storage;
9-
use PhpOffice\PhpWord\TemplateProcessor;
9+
use App\Helpers\TemplateProcessor;
1010

1111
class Cetak
1212
{

app/Helpers/TemplateProcessor.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace App\Helpers;
4+
5+
use PhpOffice\PhpWord\TemplateProcessor as PhpWordTemplateProcessor;
6+
7+
class TemplateProcessor extends PhpWordTemplateProcessor
8+
{
9+
public function gettempDocumentMainPart()
10+
{
11+
return $this->tempDocumentMainPart;
12+
}
13+
14+
public function settempDocumentMainPart($new)
15+
{
16+
return $this->tempDocumentMainPart = $new;
17+
}
18+
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git"
1111
},
1212
{
13-
"url": "https://github.com/laravelwebdev/PHPWord.git",
13+
"url": "https://github.com/laravelwebdev/nova-greeter.git",
1414
"type": "git"
1515
}
1616
],

composer.lock

Lines changed: 27 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lang/en/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
return [
6-
'failed' => 'These credentials do not match our records.',
6+
'failed' => 'These credentials do not match our records.',
77
'password' => 'The password is incorrect.',
88
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
99
];

lang/en/pagination.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
declare(strict_types=1);
44

55
return [
6-
'next' => 'Next &raquo;',
6+
'next' => 'Next &raquo;',
77
'previous' => '&laquo; Previous',
88
];

lang/en/passwords.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
declare(strict_types=1);
44

55
return [
6-
'reset' => 'Your password has been reset.',
7-
'sent' => 'We have emailed your password reset link.',
6+
'reset' => 'Your password has been reset.',
7+
'sent' => 'We have emailed your password reset link.',
88
'throttled' => 'Please wait before retrying.',
9-
'token' => 'This password reset token is invalid.',
10-
'user' => 'We can\'t find a user with that email address.',
9+
'token' => 'This password reset token is invalid.',
10+
'user' => 'We can\'t find a user with that email address.',
1111
];

0 commit comments

Comments
 (0)