first
This commit is contained in:
13
.dockerignore
Normal file
13
.dockerignore
Normal file
@@ -0,0 +1,13 @@
|
||||
.git
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
node_modules
|
||||
vendor
|
||||
storage/framework/cache/*
|
||||
storage/framework/sessions/*
|
||||
storage/framework/views/*
|
||||
storage/logs/*
|
||||
bootstrap/cache/*
|
||||
.phpunit.result.cache
|
||||
docker-compose.override.yml
|
||||
18
.editorconfig
Normal file
18
.editorconfig
Normal file
@@ -0,0 +1,18 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
[docker-compose.yml]
|
||||
indent_size = 4
|
||||
13
.env.docker.example
Normal file
13
.env.docker.example
Normal file
@@ -0,0 +1,13 @@
|
||||
APP_PORT=8000
|
||||
APP_ENV=production
|
||||
APP_KEY=
|
||||
APP_DEBUG=false
|
||||
APP_URL=http://localhost:8000
|
||||
|
||||
DB_PORT=3306
|
||||
DB_DATABASE=db_cobol
|
||||
DB_USERNAME=root
|
||||
DB_PASSWORD=
|
||||
|
||||
RUN_MIGRATIONS=false
|
||||
RUN_SEEDERS=false
|
||||
66
.env.example
Normal file
66
.env.example
Normal file
@@ -0,0 +1,66 @@
|
||||
APP_NAME="Hafiz Tunggakan"
|
||||
APP_ENV=local
|
||||
APP_KEY=
|
||||
APP_DEBUG=true
|
||||
APP_TIMEZONE=Asia/Kuala_Lumpur
|
||||
APP_URL=http://localhost
|
||||
|
||||
APP_LOCALE=ms
|
||||
APP_FALLBACK_LOCALE=en
|
||||
APP_FAKER_LOCALE=en_US
|
||||
|
||||
APP_MAINTENANCE_DRIVER=file
|
||||
# APP_MAINTENANCE_STORE=database
|
||||
|
||||
PHP_CLI_SERVER_WORKERS=4
|
||||
|
||||
BCRYPT_ROUNDS=12
|
||||
|
||||
LOG_CHANNEL=stack
|
||||
LOG_STACK=single
|
||||
LOG_DEPRECATIONS_CHANNEL=null
|
||||
LOG_LEVEL=debug
|
||||
|
||||
DB_CONNECTION=mysql
|
||||
DB_HOST=172.17.200.16
|
||||
DB_PORT=3306
|
||||
DB_DATABASE=db_cobol
|
||||
DB_USERNAME=root
|
||||
DB_PASSWORD=
|
||||
|
||||
SESSION_DRIVER=file
|
||||
SESSION_LIFETIME=120
|
||||
SESSION_ENCRYPT=false
|
||||
SESSION_PATH=/
|
||||
SESSION_DOMAIN=null
|
||||
|
||||
BROADCAST_CONNECTION=log
|
||||
FILESYSTEM_DISK=local
|
||||
QUEUE_CONNECTION=database
|
||||
|
||||
CACHE_STORE=database
|
||||
CACHE_PREFIX=
|
||||
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
REDIS_CLIENT=phpredis
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_PASSWORD=null
|
||||
REDIS_PORT=6379
|
||||
|
||||
MAIL_MAILER=log
|
||||
MAIL_SCHEME=null
|
||||
MAIL_HOST=127.0.0.1
|
||||
MAIL_PORT=2525
|
||||
MAIL_USERNAME=null
|
||||
MAIL_PASSWORD=null
|
||||
MAIL_FROM_ADDRESS="hello@example.com"
|
||||
MAIL_FROM_NAME="${APP_NAME}"
|
||||
|
||||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_DEFAULT_REGION=us-east-1
|
||||
AWS_BUCKET=
|
||||
AWS_USE_PATH_STYLE_ENDPOINT=false
|
||||
|
||||
VITE_APP_NAME="${APP_NAME}"
|
||||
11
.gitattributes
vendored
Normal file
11
.gitattributes
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
* text=auto eol=lf
|
||||
|
||||
*.blade.php diff=html
|
||||
*.css diff=css
|
||||
*.html diff=html
|
||||
*.md diff=markdown
|
||||
*.php diff=php
|
||||
|
||||
/.github export-ignore
|
||||
CHANGELOG.md export-ignore
|
||||
.styleci.yml export-ignore
|
||||
23
.gitignore
vendored
Normal file
23
.gitignore
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/.phpunit.cache
|
||||
/node_modules
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/storage/pail
|
||||
/vendor
|
||||
.env
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
.phpunit.result.cache
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
/auth.json
|
||||
/.fleet
|
||||
/.idea
|
||||
/.nova
|
||||
/.vscode
|
||||
/.zed
|
||||
32
Dockerfile
Normal file
32
Dockerfile
Normal file
@@ -0,0 +1,32 @@
|
||||
FROM php:8.3-cli
|
||||
|
||||
WORKDIR /var/www/html
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends git unzip libonig-dev libzip-dev \
|
||||
&& docker-php-ext-install bcmath mbstring pdo_mysql zip \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||
|
||||
COPY composer.json composer.lock ./
|
||||
RUN COMPOSER_ALLOW_SUPERUSER=1 composer install \
|
||||
--no-dev \
|
||||
--prefer-dist \
|
||||
--no-interaction \
|
||||
--no-progress \
|
||||
--no-scripts \
|
||||
--optimize-autoloader
|
||||
|
||||
COPY . .
|
||||
COPY docker/entrypoint.sh /usr/local/bin/hafiz-entrypoint
|
||||
|
||||
RUN chmod +x /usr/local/bin/hafiz-entrypoint \
|
||||
&& mkdir -p storage/framework/cache storage/framework/sessions storage/framework/views storage/logs bootstrap/cache \
|
||||
&& chown -R www-data:www-data storage bootstrap/cache \
|
||||
&& COMPOSER_ALLOW_SUPERUSER=1 composer dump-autoload --optimize
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
ENTRYPOINT ["hafiz-entrypoint"]
|
||||
CMD ["php", "artisan", "serve", "--host=0.0.0.0", "--port=8000"]
|
||||
77
README.md
Normal file
77
README.md
Normal file
@@ -0,0 +1,77 @@
|
||||
# Hafiz Tunggakan
|
||||
|
||||
Aplikasi Laravel untuk carian dan cetakan data RateMas tahunan.
|
||||
|
||||
## Docker
|
||||
|
||||
Setup Docker ini menjalankan aplikasi Laravel sahaja. MySQL tidak dibuat dalam Docker kerana aplikasi disambung ke external MySQL:
|
||||
|
||||
```text
|
||||
172.17.200.16:3306
|
||||
```
|
||||
|
||||
Sediakan environment Docker:
|
||||
|
||||
```bash
|
||||
cp .env.docker.example .env.docker
|
||||
```
|
||||
|
||||
Kemudian edit `.env.docker` untuk credential MySQL sebenar:
|
||||
|
||||
```env
|
||||
DB_DATABASE=db_cobol
|
||||
DB_USERNAME=root
|
||||
DB_PASSWORD=
|
||||
```
|
||||
|
||||
Build dan run:
|
||||
|
||||
```bash
|
||||
docker compose --env-file .env.docker up -d --build
|
||||
```
|
||||
|
||||
Aplikasi boleh dibuka di:
|
||||
|
||||
```text
|
||||
http://localhost:8000
|
||||
```
|
||||
|
||||
Untuk jalankan migration dan seeder semasa container start, set:
|
||||
|
||||
```env
|
||||
RUN_MIGRATIONS=true
|
||||
RUN_SEEDERS=true
|
||||
```
|
||||
|
||||
Seeder akan cipta login:
|
||||
|
||||
```text
|
||||
User biasa: cukai / 123
|
||||
Admin: admin / admin123
|
||||
```
|
||||
|
||||
## Docker Commands
|
||||
|
||||
Lihat log:
|
||||
|
||||
```bash
|
||||
docker compose logs -f app
|
||||
```
|
||||
|
||||
Jalankan migration manual:
|
||||
|
||||
```bash
|
||||
docker compose exec app php artisan migrate --force
|
||||
```
|
||||
|
||||
Jalankan seeder manual:
|
||||
|
||||
```bash
|
||||
docker compose exec app php artisan db:seed --force
|
||||
```
|
||||
|
||||
Stop container:
|
||||
|
||||
```bash
|
||||
docker compose down
|
||||
```
|
||||
37
app/Http/Controllers/Admin/RateMasUploadController.php
Normal file
37
app/Http/Controllers/Admin/RateMasUploadController.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Services\RateMasImportService;
|
||||
use Illuminate\Http\RedirectResponse;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class RateMasUploadController extends Controller
|
||||
{
|
||||
public function create(): View
|
||||
{
|
||||
return view('admin.ratemas-upload');
|
||||
}
|
||||
|
||||
public function store(Request $request, RateMasImportService $importer): RedirectResponse
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'year' => ['required', 'integer', 'min:1900', 'max:2100'],
|
||||
'file' => ['required', 'file', 'mimes:csv,txt,xml', 'max:51200'],
|
||||
'replace_existing' => ['nullable', 'boolean'],
|
||||
]);
|
||||
|
||||
$result = $importer->import(
|
||||
(int) $validated['year'],
|
||||
$request->file('file')->getRealPath(),
|
||||
strtolower($request->file('file')->getClientOriginalExtension()),
|
||||
$request->boolean('replace_existing')
|
||||
);
|
||||
|
||||
return redirect()
|
||||
->route('admin.ratemas-upload.create')
|
||||
->with('status', "{$result['rows']} rekod berjaya dimasukkan ke table {$result['table']}.");
|
||||
}
|
||||
}
|
||||
44
app/Http/Controllers/AuthController.php
Normal file
44
app/Http/Controllers/AuthController.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\RedirectResponse;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class AuthController extends Controller
|
||||
{
|
||||
public function showLogin(): View
|
||||
{
|
||||
return view('auth.login');
|
||||
}
|
||||
|
||||
public function login(Request $request): RedirectResponse
|
||||
{
|
||||
$credentials = $request->validate([
|
||||
'username' => ['required', 'string'],
|
||||
'password' => ['required', 'string'],
|
||||
]);
|
||||
|
||||
if (Auth::attempt($credentials)) {
|
||||
$request->session()->regenerate();
|
||||
|
||||
return redirect()->intended(route('tables.index'));
|
||||
}
|
||||
|
||||
return back()
|
||||
->withErrors(['username' => 'Login gagal. Sila semak username dan password.'])
|
||||
->onlyInput('username');
|
||||
}
|
||||
|
||||
public function logout(Request $request): RedirectResponse
|
||||
{
|
||||
Auth::logout();
|
||||
|
||||
$request->session()->invalidate();
|
||||
$request->session()->regenerateToken();
|
||||
|
||||
return redirect()->route('login');
|
||||
}
|
||||
}
|
||||
8
app/Http/Controllers/Controller.php
Normal file
8
app/Http/Controllers/Controller.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
abstract class Controller
|
||||
{
|
||||
//
|
||||
}
|
||||
114
app/Http/Controllers/RateMasController.php
Normal file
114
app/Http/Controllers/RateMasController.php
Normal file
@@ -0,0 +1,114 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\RedirectResponse;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class RateMasController extends Controller
|
||||
{
|
||||
private const TABLES = [
|
||||
'2013_ratemas' => 'RateMas 2013',
|
||||
'2014_ratemas' => 'RateMas 2014',
|
||||
'2015_ratemas' => 'RateMas 2015',
|
||||
'2016_ratemas' => 'RateMas 2016',
|
||||
'2017_ratemas' => 'RateMas 2017',
|
||||
'2018_ratemas' => 'RateMas 2018',
|
||||
];
|
||||
|
||||
public function index(): View
|
||||
{
|
||||
return view('ratemas.index', [
|
||||
'tables' => $this->availableTables(),
|
||||
]);
|
||||
}
|
||||
|
||||
public function lookup(Request $request): RedirectResponse
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'noakaun' => ['required', 'string', 'max:100'],
|
||||
'year' => ['required', 'integer', 'min:1900', 'max:2100'],
|
||||
]);
|
||||
|
||||
return redirect()->route('ratemas.show', [
|
||||
'table' => $validated['year'].'_ratemas',
|
||||
'noakaun' => $validated['noakaun'],
|
||||
]);
|
||||
}
|
||||
|
||||
public function search(string $table): View
|
||||
{
|
||||
$this->abortIfInvalidTable($table);
|
||||
|
||||
return view('ratemas.search', [
|
||||
'table' => $table,
|
||||
'title' => $this->tableTitle($table),
|
||||
]);
|
||||
}
|
||||
|
||||
public function show(Request $request, string $table): View
|
||||
{
|
||||
$this->abortIfInvalidTable($table);
|
||||
|
||||
$validated = $request->validate([
|
||||
'noakaun' => ['required', 'string', 'max:100'],
|
||||
]);
|
||||
|
||||
$record = DB::table($table)
|
||||
->where('no_akaun', $validated['noakaun'])
|
||||
->first();
|
||||
|
||||
abort_if($record === null, 404, 'Rekod no akaun tidak dijumpai.');
|
||||
|
||||
$years = array_map(
|
||||
fn (string $tableName): string => substr($tableName, 0, 4),
|
||||
array_keys($this->availableTables())
|
||||
);
|
||||
$currentYear = substr($table, 0, 4);
|
||||
$currentIndex = array_search($currentYear, $years, true);
|
||||
|
||||
return view('ratemas.show', [
|
||||
'record' => $record,
|
||||
'table' => $table,
|
||||
'title' => $this->tableTitle($table),
|
||||
'currentYear' => $currentYear,
|
||||
'years' => $years,
|
||||
'previousYear' => $currentIndex > 0 ? $years[$currentIndex - 1] : null,
|
||||
'nextYear' => $currentIndex < count($years) - 1 ? $years[$currentIndex + 1] : null,
|
||||
'noakaun' => $validated['noakaun'],
|
||||
]);
|
||||
}
|
||||
|
||||
private function abortIfInvalidTable(string $table): void
|
||||
{
|
||||
abort_unless(preg_match('/^\d{4}_ratemas$/', $table) === 1 && Schema::hasTable($table), 404);
|
||||
}
|
||||
|
||||
private function tableTitle(string $table): string
|
||||
{
|
||||
return $this->availableTables()[$table] ?? 'RateMas '.substr($table, 0, 4);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, string>
|
||||
*/
|
||||
private function availableTables(): array
|
||||
{
|
||||
$tables = self::TABLES;
|
||||
|
||||
foreach (Schema::getTables() as $table) {
|
||||
$name = $table['name'] ?? $table['table'] ?? null;
|
||||
|
||||
if (is_string($name) && preg_match('/^\d{4}_ratemas$/', $name) === 1) {
|
||||
$tables[$name] = 'RateMas '.substr($name, 0, 4);
|
||||
}
|
||||
}
|
||||
|
||||
ksort($tables);
|
||||
|
||||
return $tables;
|
||||
}
|
||||
}
|
||||
17
app/Http/Middleware/EnsureAdmin.php
Normal file
17
app/Http/Middleware/EnsureAdmin.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class EnsureAdmin
|
||||
{
|
||||
public function handle(Request $request, Closure $next): Response
|
||||
{
|
||||
abort_unless($request->user()?->isAdmin(), 403);
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
55
app/Models/User.php
Normal file
55
app/Models/User.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
// use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
class User extends Authenticatable
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\UserFactory> */
|
||||
use HasFactory, Notifiable;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var list<string>
|
||||
*/
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'username',
|
||||
'role',
|
||||
'email',
|
||||
'password',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be hidden for serialization.
|
||||
*
|
||||
* @var list<string>
|
||||
*/
|
||||
protected $hidden = [
|
||||
'password',
|
||||
'remember_token',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get the attributes that should be cast.
|
||||
*
|
||||
* @return array<string, string>
|
||||
*/
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'email_verified_at' => 'datetime',
|
||||
'password' => 'hashed',
|
||||
];
|
||||
}
|
||||
|
||||
public function isAdmin(): bool
|
||||
{
|
||||
return $this->role === 'admin';
|
||||
}
|
||||
}
|
||||
24
app/Providers/AppServiceProvider.php
Normal file
24
app/Providers/AppServiceProvider.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register any application services.
|
||||
*/
|
||||
public function register(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
259
app/Services/RateMasImportService.php
Normal file
259
app/Services/RateMasImportService.php
Normal file
@@ -0,0 +1,259 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Http\Exceptions\HttpResponseException;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Support\Str;
|
||||
use SimpleXMLElement;
|
||||
|
||||
class RateMasImportService
|
||||
{
|
||||
private const COLUMNS = [
|
||||
'no_akaun' => 'string',
|
||||
'no_akaun_lama' => 'string',
|
||||
'nama_pemilik' => 'string',
|
||||
'alamatpos_1' => 'string',
|
||||
'alamatpos_2' => 'string',
|
||||
'alamatpos_3' => 'string',
|
||||
'ic_no' => 'string',
|
||||
'old_ic_no' => 'string',
|
||||
'bangsa' => 'string',
|
||||
'warganegara' => 'string',
|
||||
'nolot' => 'string',
|
||||
'nogeran' => 'string',
|
||||
'kegunaan' => 'string',
|
||||
'mukim' => 'string',
|
||||
'no_bangunan' => 'string',
|
||||
'lokasiharta_1' => 'string',
|
||||
'lokasiharta_2' => 'string',
|
||||
'kawasan' => 'string',
|
||||
'jenisbangunan' => 'string',
|
||||
'new_taksiran' => 'decimal',
|
||||
'kadar' => 'decimal',
|
||||
'cukai_setengahtahun' => 'decimal',
|
||||
'tarikh_kuatkuasa' => 'string',
|
||||
'old_taksiran' => 'decimal',
|
||||
'old_kadar' => 'decimal',
|
||||
'tunggakan_cukai' => 'decimal',
|
||||
'cukai_semasa_1' => 'decimal',
|
||||
'cukai_semasa_2' => 'decimal',
|
||||
'pelarasan_cukai' => 'decimal',
|
||||
'bayaran_cukai_diterima' => 'decimal',
|
||||
'baki_cukai' => 'decimal',
|
||||
'baki_najis' => 'decimal',
|
||||
'baki_notis' => 'decimal',
|
||||
'baki_waran' => 'decimal',
|
||||
'jumlah_baki' => 'decimal',
|
||||
];
|
||||
|
||||
public function import(int $year, string $path, string $extension, bool $replaceExisting): array
|
||||
{
|
||||
$table = $year.'_ratemas';
|
||||
|
||||
if (! preg_match('/^\d{4}_ratemas$/', $table)) {
|
||||
$this->fail('Tahun tidak sah.');
|
||||
}
|
||||
|
||||
$tableExists = Schema::hasTable($table);
|
||||
if ($tableExists && ! $replaceExisting) {
|
||||
$this->fail("Table {$table} sudah wujud. Tandakan pilihan ganti data jika mahu overwrite.");
|
||||
}
|
||||
|
||||
$rows = $extension === 'xml'
|
||||
? $this->readXml($path)
|
||||
: $this->readCsv($path);
|
||||
|
||||
if ($rows === []) {
|
||||
$this->fail('Fail tidak mengandungi rekod yang boleh diimport.');
|
||||
}
|
||||
|
||||
DB::transaction(function () use ($table, $tableExists, $replaceExisting, $rows): void {
|
||||
if (! $tableExists) {
|
||||
$this->createRateMasTable($table);
|
||||
} elseif ($replaceExisting) {
|
||||
DB::table($table)->truncate();
|
||||
}
|
||||
|
||||
foreach (array_chunk($rows, 500) as $chunk) {
|
||||
DB::table($table)->insert($chunk);
|
||||
}
|
||||
});
|
||||
|
||||
return [
|
||||
'table' => $table,
|
||||
'rows' => count($rows),
|
||||
];
|
||||
}
|
||||
|
||||
private function createRateMasTable(string $table): void
|
||||
{
|
||||
Schema::create($table, function (Blueprint $blueprint): void {
|
||||
$blueprint->string('no_akaun')->primary();
|
||||
|
||||
foreach (self::COLUMNS as $column => $type) {
|
||||
if ($column === 'no_akaun') {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($type === 'decimal') {
|
||||
$blueprint->decimal($column, 14, 2)->default(0);
|
||||
} else {
|
||||
$blueprint->text($column)->nullable();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private function readCsv(string $path): array
|
||||
{
|
||||
$handle = fopen($path, 'rb');
|
||||
if ($handle === false) {
|
||||
$this->fail('Fail CSV tidak boleh dibaca.');
|
||||
}
|
||||
|
||||
$firstLine = fgets($handle) ?: '';
|
||||
rewind($handle);
|
||||
|
||||
$delimiter = $this->detectDelimiter($firstLine);
|
||||
$headers = fgetcsv($handle, 0, $delimiter);
|
||||
if (! is_array($headers)) {
|
||||
fclose($handle);
|
||||
$this->fail('Header CSV tidak sah.');
|
||||
}
|
||||
|
||||
$headers = array_map(fn ($header) => $this->normalizeHeader((string) $header), $headers);
|
||||
$this->assertRequiredHeaders($headers);
|
||||
|
||||
$rows = [];
|
||||
while (($data = fgetcsv($handle, 0, $delimiter)) !== false) {
|
||||
if ($data === [null] || $this->isEmptyRow($data)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$rows[] = $this->normalizeRow(array_combine($headers, array_pad($data, count($headers), null)) ?: []);
|
||||
}
|
||||
|
||||
fclose($handle);
|
||||
|
||||
return $rows;
|
||||
}
|
||||
|
||||
private function readXml(string $path): array
|
||||
{
|
||||
$xml = simplexml_load_file($path);
|
||||
if (! $xml instanceof SimpleXMLElement) {
|
||||
$this->fail('Fail XML tidak sah.');
|
||||
}
|
||||
|
||||
$nodes = $this->recordNodes($xml);
|
||||
$rows = [];
|
||||
|
||||
foreach ($nodes as $node) {
|
||||
$row = [];
|
||||
foreach ($node->children() as $key => $value) {
|
||||
$row[$this->normalizeHeader($key)] = trim((string) $value);
|
||||
}
|
||||
|
||||
if ($row !== []) {
|
||||
$rows[] = $this->normalizeRow($row);
|
||||
}
|
||||
}
|
||||
|
||||
if ($rows !== []) {
|
||||
$this->assertRequiredHeaders(array_keys($rows[0]));
|
||||
}
|
||||
|
||||
return $rows;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<int, SimpleXMLElement>
|
||||
*/
|
||||
private function recordNodes(SimpleXMLElement $xml): array
|
||||
{
|
||||
$children = iterator_to_array($xml->children());
|
||||
if ($children === []) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$first = reset($children);
|
||||
if ($first instanceof SimpleXMLElement && $first->children()->count() > 0) {
|
||||
return array_values(array_filter($children, fn ($child) => $child instanceof SimpleXMLElement));
|
||||
}
|
||||
|
||||
return [$xml];
|
||||
}
|
||||
|
||||
private function normalizeRow(array $row): array
|
||||
{
|
||||
$normalized = [];
|
||||
|
||||
foreach (self::COLUMNS as $column => $type) {
|
||||
$value = $row[$column] ?? null;
|
||||
$normalized[$column] = $type === 'decimal'
|
||||
? $this->decimalValue($value)
|
||||
: $this->stringValue($value);
|
||||
}
|
||||
|
||||
if ($normalized['no_akaun'] === null || $normalized['no_akaun'] === '') {
|
||||
$this->fail('Setiap rekod mesti mempunyai no_akaun.');
|
||||
}
|
||||
|
||||
return $normalized;
|
||||
}
|
||||
|
||||
private function detectDelimiter(string $line): string
|
||||
{
|
||||
$delimiters = [',', ';', "\t", '|'];
|
||||
$counts = array_map(fn ($delimiter) => substr_count($line, $delimiter), $delimiters);
|
||||
arsort($counts);
|
||||
|
||||
return $delimiters[(int) array_key_first($counts)];
|
||||
}
|
||||
|
||||
private function normalizeHeader(string $header): string
|
||||
{
|
||||
return Str::of($header)
|
||||
->trim()
|
||||
->lower()
|
||||
->replace([' ', '-', '.', '/', '(', ')', '%'], '_')
|
||||
->replaceMatches('/_+/', '_')
|
||||
->trim('_')
|
||||
->toString();
|
||||
}
|
||||
|
||||
private function assertRequiredHeaders(array $headers): void
|
||||
{
|
||||
if (! in_array('no_akaun', $headers, true)) {
|
||||
$this->fail('Fail mesti mempunyai kolum no_akaun.');
|
||||
}
|
||||
}
|
||||
|
||||
private function isEmptyRow(array $row): bool
|
||||
{
|
||||
return trim(implode('', array_map(fn ($value) => (string) $value, $row))) === '';
|
||||
}
|
||||
|
||||
private function stringValue(mixed $value): ?string
|
||||
{
|
||||
$value = trim((string) ($value ?? ''));
|
||||
|
||||
return $value === '' ? null : $value;
|
||||
}
|
||||
|
||||
private function decimalValue(mixed $value): float
|
||||
{
|
||||
$value = trim((string) ($value ?? ''));
|
||||
$value = str_replace([',', 'RM', 'rm', ' '], '', $value);
|
||||
|
||||
return $value === '' || ! is_numeric($value) ? 0.0 : (float) $value;
|
||||
}
|
||||
|
||||
private function fail(string $message): never
|
||||
{
|
||||
throw new HttpResponseException(back()->withErrors(['file' => $message])->withInput());
|
||||
}
|
||||
}
|
||||
15
artisan
Normal file
15
artisan
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use Symfony\Component\Console\Input\ArgvInput;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the command...
|
||||
$status = (require_once __DIR__.'/bootstrap/app.php')
|
||||
->handleCommand(new ArgvInput);
|
||||
|
||||
exit($status);
|
||||
20
bootstrap/app.php
Normal file
20
bootstrap/app.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Application;
|
||||
use Illuminate\Foundation\Configuration\Exceptions;
|
||||
use Illuminate\Foundation\Configuration\Middleware;
|
||||
|
||||
return Application::configure(basePath: dirname(__DIR__))
|
||||
->withRouting(
|
||||
web: __DIR__.'/../routes/web.php',
|
||||
commands: __DIR__.'/../routes/console.php',
|
||||
health: '/up',
|
||||
)
|
||||
->withMiddleware(function (Middleware $middleware) {
|
||||
$middleware->alias([
|
||||
'admin' => \App\Http\Middleware\EnsureAdmin::class,
|
||||
]);
|
||||
})
|
||||
->withExceptions(function (Exceptions $exceptions) {
|
||||
//
|
||||
})->create();
|
||||
2
bootstrap/cache/.gitignore
vendored
Normal file
2
bootstrap/cache/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
5
bootstrap/providers.php
Normal file
5
bootstrap/providers.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
App\Providers\AppServiceProvider::class,
|
||||
];
|
||||
71
composer.json
Normal file
71
composer.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"$schema": "https://getcomposer.org/schema.json",
|
||||
"name": "laravel/laravel",
|
||||
"type": "project",
|
||||
"description": "The skeleton application for the Laravel framework.",
|
||||
"keywords": ["laravel", "framework"],
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
"php": "^8.2",
|
||||
"laravel/framework": "^11.31",
|
||||
"laravel/tinker": "^2.9"
|
||||
},
|
||||
"require-dev": {
|
||||
"fakerphp/faker": "^1.23",
|
||||
"laravel/pail": "^1.1",
|
||||
"laravel/pint": "^1.13",
|
||||
"laravel/sail": "^1.26",
|
||||
"mockery/mockery": "^1.6",
|
||||
"nunomaduro/collision": "^8.1",
|
||||
"phpunit/phpunit": "^11.0.1"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/",
|
||||
"Database\\Factories\\": "database/factories/",
|
||||
"Database\\Seeders\\": "database/seeders/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"post-autoload-dump": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||
"@php artisan package:discover --ansi"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
||||
],
|
||||
"post-root-package-install": [
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"@php artisan key:generate --ansi",
|
||||
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
||||
"@php artisan migrate --graceful --ansi"
|
||||
],
|
||||
"dev": [
|
||||
"Composer\\Config::disableProcessTimeout",
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"dont-discover": []
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"pestphp/pest-plugin": true,
|
||||
"php-http/discovery": true
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"prefer-stable": true
|
||||
}
|
||||
8313
composer.lock
generated
Normal file
8313
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
126
config/app.php
Normal file
126
config/app.php
Normal file
@@ -0,0 +1,126 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the name of your application, which will be used when the
|
||||
| framework needs to place the application's name in a notification or
|
||||
| other UI elements where an application name needs to be displayed.
|
||||
|
|
||||
*/
|
||||
|
||||
'name' => env('APP_NAME', 'Laravel'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Environment
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the "environment" your application is currently
|
||||
| running in. This may determine how you prefer to configure various
|
||||
| services the application utilizes. Set this in your ".env" file.
|
||||
|
|
||||
*/
|
||||
|
||||
'env' => env('APP_ENV', 'production'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Debug Mode
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When your application is in debug mode, detailed error messages with
|
||||
| stack traces will be shown on every error that occurs within your
|
||||
| application. If disabled, a simple generic error page is shown.
|
||||
|
|
||||
*/
|
||||
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application URL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This URL is used by the console to properly generate URLs when using
|
||||
| the Artisan command line tool. You should set this to the root of
|
||||
| the application so that it's available within Artisan commands.
|
||||
|
|
||||
*/
|
||||
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Timezone
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default timezone for your application, which
|
||||
| will be used by the PHP date and date-time functions. The timezone
|
||||
| is set to "UTC" by default as it is suitable for most use cases.
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => env('APP_TIMEZONE', 'UTC'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Locale Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The application locale determines the default locale that will be used
|
||||
| by Laravel's translation / localization methods. This option can be
|
||||
| set to any locale for which you plan to have translation strings.
|
||||
|
|
||||
*/
|
||||
|
||||
'locale' => env('APP_LOCALE', 'en'),
|
||||
|
||||
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
|
||||
|
||||
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This key is utilized by Laravel's encryption services and should be set
|
||||
| to a random, 32 character string to ensure that all encrypted values
|
||||
| are secure. You should do this prior to deploying the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'cipher' => 'AES-256-CBC',
|
||||
|
||||
'key' => env('APP_KEY'),
|
||||
|
||||
'previous_keys' => [
|
||||
...array_filter(
|
||||
explode(',', env('APP_PREVIOUS_KEYS', ''))
|
||||
),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Maintenance Mode Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options determine the driver used to determine and
|
||||
| manage Laravel's "maintenance mode" status. The "cache" driver will
|
||||
| allow maintenance mode to be controlled across multiple machines.
|
||||
|
|
||||
| Supported drivers: "file", "cache"
|
||||
|
|
||||
*/
|
||||
|
||||
'maintenance' => [
|
||||
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
|
||||
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
||||
],
|
||||
|
||||
];
|
||||
115
config/auth.php
Normal file
115
config/auth.php
Normal file
@@ -0,0 +1,115 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Defaults
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default authentication "guard" and password
|
||||
| reset "broker" for your application. You may change these values
|
||||
| as required, but they're a perfect start for most applications.
|
||||
|
|
||||
*/
|
||||
|
||||
'defaults' => [
|
||||
'guard' => env('AUTH_GUARD', 'web'),
|
||||
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Guards
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Next, you may define every authentication guard for your application.
|
||||
| Of course, a great default configuration has been defined for you
|
||||
| which utilizes session storage plus the Eloquent user provider.
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| Supported: "session"
|
||||
|
|
||||
*/
|
||||
|
||||
'guards' => [
|
||||
'web' => [
|
||||
'driver' => 'session',
|
||||
'provider' => 'users',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| If you have multiple user tables or models you may configure multiple
|
||||
| providers to represent the model / table. These providers may then
|
||||
| be assigned to any extra authentication guards you have defined.
|
||||
|
|
||||
| Supported: "database", "eloquent"
|
||||
|
|
||||
*/
|
||||
|
||||
'providers' => [
|
||||
'users' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => env('AUTH_MODEL', App\Models\User::class),
|
||||
],
|
||||
|
||||
// 'users' => [
|
||||
// 'driver' => 'database',
|
||||
// 'table' => 'users',
|
||||
// ],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Resetting Passwords
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options specify the behavior of Laravel's password
|
||||
| reset functionality, including the table utilized for token storage
|
||||
| and the user provider that is invoked to actually retrieve users.
|
||||
|
|
||||
| The expiry time is the number of minutes that each reset token will be
|
||||
| considered valid. This security feature keeps tokens short-lived so
|
||||
| they have less time to be guessed. You may change this as needed.
|
||||
|
|
||||
| The throttle setting is the number of seconds a user must wait before
|
||||
| generating more password reset tokens. This prevents the user from
|
||||
| quickly generating a very large amount of password reset tokens.
|
||||
|
|
||||
*/
|
||||
|
||||
'passwords' => [
|
||||
'users' => [
|
||||
'provider' => 'users',
|
||||
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Confirmation Timeout
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define the amount of seconds before a password confirmation
|
||||
| window expires and users are asked to re-enter their password via the
|
||||
| confirmation screen. By default, the timeout lasts for three hours.
|
||||
|
|
||||
*/
|
||||
|
||||
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
|
||||
|
||||
];
|
||||
108
config/cache.php
Normal file
108
config/cache.php
Normal file
@@ -0,0 +1,108 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default cache store that will be used by the
|
||||
| framework. This connection is utilized if another isn't explicitly
|
||||
| specified when running a cache operation inside the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('CACHE_STORE', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Stores
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of the cache "stores" for your application as
|
||||
| well as their drivers. You may even define multiple stores for the
|
||||
| same cache driver to group types of items stored in your caches.
|
||||
|
|
||||
| Supported drivers: "array", "database", "file", "memcached",
|
||||
| "redis", "dynamodb", "octane", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'stores' => [
|
||||
|
||||
'array' => [
|
||||
'driver' => 'array',
|
||||
'serialize' => false,
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_CACHE_CONNECTION'),
|
||||
'table' => env('DB_CACHE_TABLE', 'cache'),
|
||||
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
|
||||
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
|
||||
],
|
||||
|
||||
'file' => [
|
||||
'driver' => 'file',
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
'lock_path' => storage_path('framework/cache/data'),
|
||||
],
|
||||
|
||||
'memcached' => [
|
||||
'driver' => 'memcached',
|
||||
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||
'sasl' => [
|
||||
env('MEMCACHED_USERNAME'),
|
||||
env('MEMCACHED_PASSWORD'),
|
||||
],
|
||||
'options' => [
|
||||
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
||||
],
|
||||
'servers' => [
|
||||
[
|
||||
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||
'port' => env('MEMCACHED_PORT', 11211),
|
||||
'weight' => 100,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
|
||||
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
|
||||
],
|
||||
|
||||
'dynamodb' => [
|
||||
'driver' => 'dynamodb',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||
],
|
||||
|
||||
'octane' => [
|
||||
'driver' => 'octane',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Key Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
|
||||
| stores, there might be other applications using the same cache. For
|
||||
| that reason, you may prefix every cache key to avoid collisions.
|
||||
|
|
||||
*/
|
||||
|
||||
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
|
||||
|
||||
];
|
||||
173
config/database.php
Normal file
173
config/database.php
Normal file
@@ -0,0 +1,173 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Database Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify which of the database connections below you wish
|
||||
| to use as your default connection for database operations. This is
|
||||
| the connection which will be utilized unless another connection
|
||||
| is explicitly specified when you execute a query / statement.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('DB_CONNECTION', 'sqlite'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Database Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below are all of the database connections defined for your application.
|
||||
| An example configuration is provided for each database system which
|
||||
| is supported by Laravel. You're free to add / remove connections.
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'url' => env('DB_URL'),
|
||||
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||
'prefix' => '',
|
||||
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||
'busy_timeout' => null,
|
||||
'journal_mode' => null,
|
||||
'synchronous' => null,
|
||||
],
|
||||
|
||||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'mariadb' => [
|
||||
'driver' => 'mariadb',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'pgsql' => [
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '5432'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'search_path' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
],
|
||||
|
||||
'sqlsrv' => [
|
||||
'driver' => 'sqlsrv',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '1433'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
|
||||
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migration Repository Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This table keeps track of all the migrations that have already run for
|
||||
| your application. Using this information, we can determine which of
|
||||
| the migrations on disk haven't actually been run on the database.
|
||||
|
|
||||
*/
|
||||
|
||||
'migrations' => [
|
||||
'table' => 'migrations',
|
||||
'update_date_on_publish' => true,
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Redis Databases
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Redis is an open source, fast, and advanced key-value store that also
|
||||
| provides a richer body of commands than a typical key-value system
|
||||
| such as Memcached. You may define your connection settings here.
|
||||
|
|
||||
*/
|
||||
|
||||
'redis' => [
|
||||
|
||||
'client' => env('REDIS_CLIENT', 'phpredis'),
|
||||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
|
||||
],
|
||||
|
||||
'default' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_DB', '0'),
|
||||
],
|
||||
|
||||
'cache' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_CACHE_DB', '1'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
80
config/filesystems.php
Normal file
80
config/filesystems.php
Normal file
@@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Filesystem Disk
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default filesystem disk that should be used
|
||||
| by the framework. The "local" disk, as well as a variety of cloud
|
||||
| based disks are available to your application for file storage.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('FILESYSTEM_DISK', 'local'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Filesystem Disks
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below you may configure as many filesystem disks as necessary, and you
|
||||
| may even configure multiple disks for the same driver. Examples for
|
||||
| most supported storage drivers are configured here for reference.
|
||||
|
|
||||
| Supported drivers: "local", "ftp", "sftp", "s3"
|
||||
|
|
||||
*/
|
||||
|
||||
'disks' => [
|
||||
|
||||
'local' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/private'),
|
||||
'serve' => true,
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
'public' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => env('APP_URL').'/storage',
|
||||
'visibility' => 'public',
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'url' => env('AWS_URL'),
|
||||
'endpoint' => env('AWS_ENDPOINT'),
|
||||
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
|
||||
'throw' => false,
|
||||
'report' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Symbolic Links
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the symbolic links that will be created when the
|
||||
| `storage:link` Artisan command is executed. The array keys should be
|
||||
| the locations of the links and the values should be their targets.
|
||||
|
|
||||
*/
|
||||
|
||||
'links' => [
|
||||
public_path('storage') => storage_path('app/public'),
|
||||
],
|
||||
|
||||
];
|
||||
132
config/logging.php
Normal file
132
config/logging.php
Normal file
@@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
use Monolog\Handler\NullHandler;
|
||||
use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Handler\SyslogUdpHandler;
|
||||
use Monolog\Processor\PsrLogMessageProcessor;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default log channel that is utilized to write
|
||||
| messages to your logs. The value provided here should match one of
|
||||
| the channels present in the list of "channels" configured below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('LOG_CHANNEL', 'stack'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Deprecations Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the log channel that should be used to log warnings
|
||||
| regarding deprecated PHP and library features. This allows you to get
|
||||
| your application ready for upcoming major versions of dependencies.
|
||||
|
|
||||
*/
|
||||
|
||||
'deprecations' => [
|
||||
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
|
||||
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Log Channels
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the log channels for your application. Laravel
|
||||
| utilizes the Monolog PHP logging library, which includes a variety
|
||||
| of powerful log handlers and formatters that you're free to use.
|
||||
|
|
||||
| Available drivers: "single", "daily", "slack", "syslog",
|
||||
| "errorlog", "monolog", "custom", "stack"
|
||||
|
|
||||
*/
|
||||
|
||||
'channels' => [
|
||||
|
||||
'stack' => [
|
||||
'driver' => 'stack',
|
||||
'channels' => explode(',', env('LOG_STACK', 'single')),
|
||||
'ignore_exceptions' => false,
|
||||
],
|
||||
|
||||
'single' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'daily' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'days' => env('LOG_DAILY_DAYS', 14),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'driver' => 'slack',
|
||||
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
|
||||
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
|
||||
'level' => env('LOG_LEVEL', 'critical'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'papertrail' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_URL'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
|
||||
],
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'stderr' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => StreamHandler::class,
|
||||
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||
'with' => [
|
||||
'stream' => 'php://stderr',
|
||||
],
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'syslog' => [
|
||||
'driver' => 'syslog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'errorlog' => [
|
||||
'driver' => 'errorlog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'null' => [
|
||||
'driver' => 'monolog',
|
||||
'handler' => NullHandler::class,
|
||||
],
|
||||
|
||||
'emergency' => [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
116
config/mail.php
Normal file
116
config/mail.php
Normal file
@@ -0,0 +1,116 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Mailer
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default mailer that is used to send all email
|
||||
| messages unless another mailer is explicitly specified when sending
|
||||
| the message. All additional mailers can be configured within the
|
||||
| "mailers" array. Examples of each type of mailer are provided.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('MAIL_MAILER', 'log'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Mailer Configurations
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure all of the mailers used by your application plus
|
||||
| their respective settings. Several examples have been configured for
|
||||
| you and you are free to add your own as your application requires.
|
||||
|
|
||||
| Laravel supports a variety of mail "transport" drivers that can be used
|
||||
| when delivering an email. You may specify which one you're using for
|
||||
| your mailers below. You may also add additional mailers if needed.
|
||||
|
|
||||
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
||||
| "postmark", "resend", "log", "array",
|
||||
| "failover", "roundrobin"
|
||||
|
|
||||
*/
|
||||
|
||||
'mailers' => [
|
||||
|
||||
'smtp' => [
|
||||
'transport' => 'smtp',
|
||||
'scheme' => env('MAIL_SCHEME'),
|
||||
'url' => env('MAIL_URL'),
|
||||
'host' => env('MAIL_HOST', '127.0.0.1'),
|
||||
'port' => env('MAIL_PORT', 2525),
|
||||
'username' => env('MAIL_USERNAME'),
|
||||
'password' => env('MAIL_PASSWORD'),
|
||||
'timeout' => null,
|
||||
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'transport' => 'ses',
|
||||
],
|
||||
|
||||
'postmark' => [
|
||||
'transport' => 'postmark',
|
||||
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
|
||||
// 'client' => [
|
||||
// 'timeout' => 5,
|
||||
// ],
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'transport' => 'resend',
|
||||
],
|
||||
|
||||
'sendmail' => [
|
||||
'transport' => 'sendmail',
|
||||
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'transport' => 'log',
|
||||
'channel' => env('MAIL_LOG_CHANNEL'),
|
||||
],
|
||||
|
||||
'array' => [
|
||||
'transport' => 'array',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'transport' => 'failover',
|
||||
'mailers' => [
|
||||
'smtp',
|
||||
'log',
|
||||
],
|
||||
],
|
||||
|
||||
'roundrobin' => [
|
||||
'transport' => 'roundrobin',
|
||||
'mailers' => [
|
||||
'ses',
|
||||
'postmark',
|
||||
],
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global "From" Address
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may wish for all emails sent by your application to be sent from
|
||||
| the same address. Here you may specify a name and address that is
|
||||
| used globally for all emails that are sent by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
],
|
||||
|
||||
];
|
||||
112
config/queue.php
Normal file
112
config/queue.php
Normal file
@@ -0,0 +1,112 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Queue Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Laravel's queue supports a variety of backends via a single, unified
|
||||
| API, giving you convenient access to each backend using identical
|
||||
| syntax for each. The default queue connection is defined below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('QUEUE_CONNECTION', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Queue Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the connection options for every queue backend
|
||||
| used by your application. An example configuration is provided for
|
||||
| each backend supported by Laravel. You're also free to add more.
|
||||
|
|
||||
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sync' => [
|
||||
'driver' => 'sync',
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_QUEUE_CONNECTION'),
|
||||
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
||||
'queue' => env('DB_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'beanstalkd' => [
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
|
||||
'queue' => env('BEANSTALKD_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => 0,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'sqs' => [
|
||||
'driver' => 'sqs',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||
'queue' => env('SQS_QUEUE', 'default'),
|
||||
'suffix' => env('SQS_SUFFIX'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => null,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Job Batching
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following options configure the database and table that store job
|
||||
| batching information. These options can be updated to any database
|
||||
| connection and table which has been defined by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'batching' => [
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'job_batches',
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Failed Queue Jobs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options configure the behavior of failed queue job logging so you
|
||||
| can control how and where failed jobs are stored. Laravel ships with
|
||||
| support for storing failed jobs in a simple file or in a database.
|
||||
|
|
||||
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => [
|
||||
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'failed_jobs',
|
||||
],
|
||||
|
||||
];
|
||||
38
config/services.php
Normal file
38
config/services.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Third Party Services
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This file is for storing the credentials for third party services such
|
||||
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
||||
| location for this type of information, allowing packages to have
|
||||
| a conventional file to locate the various service credentials.
|
||||
|
|
||||
*/
|
||||
|
||||
'postmark' => [
|
||||
'token' => env('POSTMARK_TOKEN'),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'key' => env('RESEND_KEY'),
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'notifications' => [
|
||||
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
||||
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
217
config/session.php
Normal file
217
config/session.php
Normal file
@@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Session Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines the default session driver that is utilized for
|
||||
| incoming requests. Laravel supports a variety of storage options to
|
||||
| persist session data. Database storage is a great default choice.
|
||||
|
|
||||
| Supported: "file", "cookie", "database", "apc",
|
||||
| "memcached", "redis", "dynamodb", "array"
|
||||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SESSION_DRIVER', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Lifetime
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the number of minutes that you wish the session
|
||||
| to be allowed to remain idle before it expires. If you want them
|
||||
| to expire immediately when the browser is closed then you may
|
||||
| indicate that via the expire_on_close configuration option.
|
||||
|
|
||||
*/
|
||||
|
||||
'lifetime' => (int) env('SESSION_LIFETIME', 120),
|
||||
|
||||
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Encryption
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option allows you to easily specify that all of your session data
|
||||
| should be encrypted before it's stored. All encryption is performed
|
||||
| automatically by Laravel and you may use the session like normal.
|
||||
|
|
||||
*/
|
||||
|
||||
'encrypt' => env('SESSION_ENCRYPT', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session File Location
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the "file" session driver, the session files are placed
|
||||
| on disk. The default storage location is defined here; however, you
|
||||
| are free to provide another location where they should be stored.
|
||||
|
|
||||
*/
|
||||
|
||||
'files' => storage_path('framework/sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Connection
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" or "redis" session drivers, you may specify a
|
||||
| connection that should be used to manage these sessions. This should
|
||||
| correspond to a connection in your database configuration options.
|
||||
|
|
||||
*/
|
||||
|
||||
'connection' => env('SESSION_CONNECTION'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" session driver, you may specify the table to
|
||||
| be used to store sessions. Of course, a sensible default is defined
|
||||
| for you; however, you're welcome to change this to another table.
|
||||
|
|
||||
*/
|
||||
|
||||
'table' => env('SESSION_TABLE', 'sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using one of the framework's cache driven session backends, you may
|
||||
| define the cache store which should be used to store the session data
|
||||
| between requests. This must match one of your defined cache stores.
|
||||
|
|
||||
| Affects: "apc", "dynamodb", "memcached", "redis"
|
||||
|
|
||||
*/
|
||||
|
||||
'store' => env('SESSION_STORE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Sweeping Lottery
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Some session drivers must manually sweep their storage location to get
|
||||
| rid of old sessions from storage. Here are the chances that it will
|
||||
| happen on a given request. By default, the odds are 2 out of 100.
|
||||
|
|
||||
*/
|
||||
|
||||
'lottery' => [2, 100],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may change the name of the session cookie that is created by
|
||||
| the framework. Typically, you should not need to change this value
|
||||
| since doing so does not grant a meaningful security improvement.
|
||||
|
|
||||
*/
|
||||
|
||||
'cookie' => env(
|
||||
'SESSION_COOKIE',
|
||||
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The session cookie path determines the path for which the cookie will
|
||||
| be regarded as available. Typically, this will be the root path of
|
||||
| your application, but you're free to change this when necessary.
|
||||
|
|
||||
*/
|
||||
|
||||
'path' => env('SESSION_PATH', '/'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Domain
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the domain and subdomains the session cookie is
|
||||
| available to. By default, the cookie will be available to the root
|
||||
| domain and all subdomains. Typically, this shouldn't be changed.
|
||||
|
|
||||
*/
|
||||
|
||||
'domain' => env('SESSION_DOMAIN'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTPS Only Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By setting this option to true, session cookies will only be sent back
|
||||
| to the server if the browser has a HTTPS connection. This will keep
|
||||
| the cookie from being sent to you when it can't be done securely.
|
||||
|
|
||||
*/
|
||||
|
||||
'secure' => env('SESSION_SECURE_COOKIE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTP Access Only
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will prevent JavaScript from accessing the
|
||||
| value of the cookie and the cookie will only be accessible through
|
||||
| the HTTP protocol. It's unlikely you should disable this option.
|
||||
|
|
||||
*/
|
||||
|
||||
'http_only' => env('SESSION_HTTP_ONLY', true),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Same-Site Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines how your cookies behave when cross-site requests
|
||||
| take place, and can be used to mitigate CSRF attacks. By default, we
|
||||
| will set this value to "lax" to permit secure cross-site requests.
|
||||
|
|
||||
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
||||
|
|
||||
| Supported: "lax", "strict", "none", null
|
||||
|
|
||||
*/
|
||||
|
||||
'same_site' => env('SESSION_SAME_SITE', 'lax'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Partitioned Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will tie the cookie to the top-level site for
|
||||
| a cross-site context. Partitioned cookies are accepted by the browser
|
||||
| when flagged "secure" and the Same-Site attribute is set to "none".
|
||||
|
|
||||
*/
|
||||
|
||||
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
|
||||
|
||||
];
|
||||
1
database/.gitignore
vendored
Normal file
1
database/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.sqlite*
|
||||
44
database/factories/UserFactory.php
Normal file
44
database/factories/UserFactory.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
|
||||
*/
|
||||
class UserFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The current password being used by the factory.
|
||||
*/
|
||||
protected static ?string $password;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'name' => fake()->name(),
|
||||
'email' => fake()->unique()->safeEmail(),
|
||||
'email_verified_at' => now(),
|
||||
'password' => static::$password ??= Hash::make('password'),
|
||||
'remember_token' => Str::random(10),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicate that the model's email address should be unverified.
|
||||
*/
|
||||
public function unverified(): static
|
||||
{
|
||||
return $this->state(fn (array $attributes) => [
|
||||
'email_verified_at' => null,
|
||||
]);
|
||||
}
|
||||
}
|
||||
49
database/migrations/0001_01_01_000000_create_users_table.php
Normal file
49
database/migrations/0001_01_01_000000_create_users_table.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
||||
$table->string('email')->primary();
|
||||
$table->string('token');
|
||||
$table->timestamp('created_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('sessions', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->foreignId('user_id')->nullable()->index();
|
||||
$table->string('ip_address', 45)->nullable();
|
||||
$table->text('user_agent')->nullable();
|
||||
$table->longText('payload');
|
||||
$table->integer('last_activity')->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('password_reset_tokens');
|
||||
Schema::dropIfExists('sessions');
|
||||
}
|
||||
};
|
||||
35
database/migrations/0001_01_01_000001_create_cache_table.php
Normal file
35
database/migrations/0001_01_01_000001_create_cache_table.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('cache', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->mediumText('value');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
|
||||
Schema::create('cache_locks', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->string('owner');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('cache');
|
||||
Schema::dropIfExists('cache_locks');
|
||||
}
|
||||
};
|
||||
57
database/migrations/0001_01_01_000002_create_jobs_table.php
Normal file
57
database/migrations/0001_01_01_000002_create_jobs_table.php
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('queue')->index();
|
||||
$table->longText('payload');
|
||||
$table->unsignedTinyInteger('attempts');
|
||||
$table->unsignedInteger('reserved_at')->nullable();
|
||||
$table->unsignedInteger('available_at');
|
||||
$table->unsignedInteger('created_at');
|
||||
});
|
||||
|
||||
Schema::create('job_batches', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->string('name');
|
||||
$table->integer('total_jobs');
|
||||
$table->integer('pending_jobs');
|
||||
$table->integer('failed_jobs');
|
||||
$table->longText('failed_job_ids');
|
||||
$table->mediumText('options')->nullable();
|
||||
$table->integer('cancelled_at')->nullable();
|
||||
$table->integer('created_at');
|
||||
$table->integer('finished_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('failed_jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('uuid')->unique();
|
||||
$table->text('connection');
|
||||
$table->text('queue');
|
||||
$table->longText('payload');
|
||||
$table->longText('exception');
|
||||
$table->timestamp('failed_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('jobs');
|
||||
Schema::dropIfExists('job_batches');
|
||||
Schema::dropIfExists('failed_jobs');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->string('username')->unique()->after('name');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropUnique(['username']);
|
||||
$table->dropColumn('username');
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->string('role')->default('user')->after('username');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropColumn('role');
|
||||
});
|
||||
}
|
||||
};
|
||||
34
database/seeders/DatabaseSeeder.php
Normal file
34
database/seeders/DatabaseSeeder.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
User::updateOrCreate([
|
||||
'username' => 'cukai',
|
||||
], [
|
||||
'name' => 'User Cukai',
|
||||
'role' => 'user',
|
||||
'email' => 'cukai@example.local',
|
||||
'password' => Hash::make('123'),
|
||||
]);
|
||||
|
||||
User::updateOrCreate([
|
||||
'username' => 'admin',
|
||||
], [
|
||||
'name' => 'Admin',
|
||||
'role' => 'admin',
|
||||
'email' => 'admin@example.local',
|
||||
'password' => Hash::make('admin123'),
|
||||
]);
|
||||
}
|
||||
}
|
||||
35
docker-compose.yml
Normal file
35
docker-compose.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
services:
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: hafiz_tunggakan_app
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "${APP_PORT:-8000}:8000"
|
||||
environment:
|
||||
APP_NAME: "Hafiz Tunggakan"
|
||||
APP_ENV: "${APP_ENV:-production}"
|
||||
APP_KEY: "${APP_KEY:-}"
|
||||
APP_DEBUG: "${APP_DEBUG:-false}"
|
||||
APP_URL: "${APP_URL:-http://localhost:8000}"
|
||||
APP_TIMEZONE: "Asia/Kuala_Lumpur"
|
||||
APP_LOCALE: "ms"
|
||||
APP_FALLBACK_LOCALE: "en"
|
||||
DB_CONNECTION: "mysql"
|
||||
DB_HOST: "172.17.200.16"
|
||||
DB_PORT: "${DB_PORT:-3306}"
|
||||
DB_DATABASE: "${DB_DATABASE:-db_cobol}"
|
||||
DB_USERNAME: "${DB_USERNAME:-root}"
|
||||
DB_PASSWORD: "${DB_PASSWORD:-}"
|
||||
SESSION_DRIVER: "file"
|
||||
CACHE_STORE: "file"
|
||||
QUEUE_CONNECTION: "sync"
|
||||
LOG_CHANNEL: "stderr"
|
||||
RUN_MIGRATIONS: "${RUN_MIGRATIONS:-false}"
|
||||
RUN_SEEDERS: "${RUN_SEEDERS:-false}"
|
||||
volumes:
|
||||
- app_storage:/var/www/html/storage
|
||||
|
||||
volumes:
|
||||
app_storage:
|
||||
21
docker/entrypoint.sh
Normal file
21
docker/entrypoint.sh
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env sh
|
||||
set -e
|
||||
|
||||
if [ -z "${APP_KEY}" ]; then
|
||||
php artisan key:generate --force --no-interaction
|
||||
fi
|
||||
|
||||
mkdir -p storage/framework/cache storage/framework/sessions storage/framework/views storage/logs bootstrap/cache
|
||||
|
||||
php artisan config:clear --no-interaction
|
||||
php artisan view:cache --no-interaction
|
||||
|
||||
if [ "${RUN_MIGRATIONS}" = "true" ]; then
|
||||
php artisan migrate --force --no-interaction
|
||||
fi
|
||||
|
||||
if [ "${RUN_SEEDERS}" = "true" ]; then
|
||||
php artisan db:seed --force --no-interaction
|
||||
fi
|
||||
|
||||
exec "$@"
|
||||
14
legacy_source/db.php
Normal file
14
legacy_source/db.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
$host = "localhost";
|
||||
$user = "root";
|
||||
$pass = "";
|
||||
$db = "db_cobol";
|
||||
|
||||
$conn = mysqli_connect($host,$user,$pass,$db);
|
||||
|
||||
if(!$conn){
|
||||
die("Connection failed : " . mysqli_connect_error());
|
||||
}
|
||||
|
||||
?>
|
||||
5
legacy_source/index.php
Normal file
5
legacy_source/index.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
header("Location: login.php");
|
||||
|
||||
?>
|
||||
86
legacy_source/login.php
Normal file
86
legacy_source/login.php
Normal file
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
session_start();
|
||||
|
||||
if(isset($_POST['login'])){
|
||||
|
||||
$username = $_POST['username'];
|
||||
$password = $_POST['password'];
|
||||
|
||||
// USER LOGIN SIMPLE
|
||||
if($username == "cukai" && $password == "123"){
|
||||
|
||||
$_SESSION['login'] = true;
|
||||
|
||||
header("Location: pilih_table.php");
|
||||
exit();
|
||||
|
||||
}else{
|
||||
$error = "Login gagal";
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Login</title>
|
||||
|
||||
<style>
|
||||
|
||||
body{
|
||||
font-family:Arial;
|
||||
background:#f0f0f0;
|
||||
}
|
||||
|
||||
.login-box{
|
||||
width:350px;
|
||||
background:white;
|
||||
margin:100px auto;
|
||||
padding:30px;
|
||||
border-radius:10px;
|
||||
}
|
||||
|
||||
input{
|
||||
width:100%;
|
||||
padding:10px;
|
||||
margin-bottom:15px;
|
||||
}
|
||||
|
||||
button{
|
||||
width:100%;
|
||||
padding:10px;
|
||||
background:#333;
|
||||
color:white;
|
||||
border:none;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="login-box">
|
||||
|
||||
<h2>LOGIN</h2>
|
||||
|
||||
<?php
|
||||
if(isset($error)){
|
||||
echo $error;
|
||||
}
|
||||
?>
|
||||
|
||||
<form method="POST">
|
||||
|
||||
<input type="text" name="username" placeholder="Username" required>
|
||||
|
||||
<input type="password" name="password" placeholder="Password" required>
|
||||
|
||||
<button type="submit" name="login">LOGIN</button>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
4
legacy_source/logout.php
Normal file
4
legacy_source/logout.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
session_start();
|
||||
session_destroy();
|
||||
header("Location: login.php");
|
||||
480
legacy_source/papar.php
Normal file
480
legacy_source/papar.php
Normal file
@@ -0,0 +1,480 @@
|
||||
<?php
|
||||
session_start();
|
||||
include "db.php";
|
||||
|
||||
if(!isset($_SESSION['login'])){
|
||||
header("Location: login.php");
|
||||
exit();
|
||||
}
|
||||
|
||||
$table = $_GET['table'];
|
||||
$noakaun = $_GET['noakaun'];
|
||||
|
||||
$sql = "SELECT * FROM $table WHERE no_akaun='$noakaun'";
|
||||
$query = mysqli_query($conn,$sql);
|
||||
|
||||
$data = mysqli_fetch_assoc($query);
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="ms">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Sejarah 2013-2018</title>
|
||||
|
||||
<style>
|
||||
|
||||
*{
|
||||
box-sizing:border-box;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
body{
|
||||
background:#e5e5e5;
|
||||
margin:0;
|
||||
padding:20px;
|
||||
}
|
||||
|
||||
.a4{
|
||||
width:210mm;
|
||||
min-height:297mm;
|
||||
background:#fff;
|
||||
margin:auto;
|
||||
padding:25mm 18mm;
|
||||
}
|
||||
|
||||
.title{
|
||||
font-size:18px;
|
||||
font-weight:bold;
|
||||
text-decoration:underline;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
table{
|
||||
width:100%;
|
||||
border-collapse:collapse;
|
||||
margin-bottom:18px;
|
||||
}
|
||||
|
||||
td{
|
||||
padding:4px 6px;
|
||||
vertical-align:middle;
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.label{
|
||||
width:180px;
|
||||
}
|
||||
|
||||
.colon{
|
||||
width:15px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.box{
|
||||
border:0px solid #555;
|
||||
font-weight:bold;
|
||||
padding:4px 8px;
|
||||
}
|
||||
|
||||
.section{
|
||||
background:#d9d9d9;
|
||||
text-align:center;
|
||||
font-weight:bold;
|
||||
text-decoration:underline;
|
||||
padding:4px;
|
||||
margin:12px 0 9px;
|
||||
font-size:13px;
|
||||
}
|
||||
|
||||
.right-label{
|
||||
width:140px;
|
||||
}
|
||||
|
||||
.amount{
|
||||
font-weight:bold;
|
||||
|
||||
}
|
||||
|
||||
.amountf{
|
||||
font-weight:bold;
|
||||
text-align:right;
|
||||
|
||||
}
|
||||
|
||||
@media print{
|
||||
|
||||
body{
|
||||
background:white;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.a4{
|
||||
width:100%;
|
||||
min-height:auto;
|
||||
margin:0;
|
||||
padding:15mm;
|
||||
box-shadow:none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.total-baki{
|
||||
font-size: 12px;
|
||||
font-weight:bold;
|
||||
text-align:right;
|
||||
|
||||
/*display: inline-block;*/
|
||||
padding-top: 5px; /* jarak line atas dengan nombor */
|
||||
padding-bottom: 3px; /* jarak nombor dengan line bawah */
|
||||
|
||||
border-top: 1px solid black;
|
||||
border-bottom: 0px double black;
|
||||
|
||||
}
|
||||
|
||||
.total-line{
|
||||
font-size: 12px;
|
||||
font-weight:bold;
|
||||
text-align:right;
|
||||
|
||||
/*display: inline-block;*/
|
||||
padding-top: 5px; /* jarak line atas dengan nombor */
|
||||
padding-bottom: 3px; /* jarak nombor dengan line bawah */
|
||||
|
||||
border-top: 1px solid black;
|
||||
border-bottom: 3px double black;
|
||||
|
||||
}
|
||||
|
||||
.jkk{
|
||||
padding: 5px 10px;
|
||||
text-align: right;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
margin: 8px 0px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.spx{
|
||||
width:240px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="a4">
|
||||
|
||||
<div class="title">
|
||||
|
||||
<?php
|
||||
|
||||
if($table == "2013_ratemas"){
|
||||
echo "RateMas 2013";
|
||||
}
|
||||
|
||||
elseif($table == "2014_ratemas"){
|
||||
echo "RateMas 2014";
|
||||
}
|
||||
|
||||
elseif($table == "2015_ratemas"){
|
||||
echo "RateMas 2015";
|
||||
}
|
||||
|
||||
elseif($table == "2016_ratemas"){
|
||||
echo "RateMas 2016";
|
||||
}
|
||||
|
||||
elseif($table == "2017_ratemas"){
|
||||
echo "RateMas 2017";
|
||||
}
|
||||
|
||||
elseif($table == "2018_ratemas"){
|
||||
echo "RateMas 2018";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
<div class=jkk>
|
||||
<a href="search.php?table=<?php echo $table; ?>"><button>Kembali ke Search</button></a>
|
||||
<a href="pilih_table.php"><button>Pilih Table</button></a>
|
||||
<button onclick="window.print()">Cetak</button>
|
||||
</div>
|
||||
|
||||
<!-- HEADER -->
|
||||
<table>
|
||||
<tr>
|
||||
<td class="label">No Akaun</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['no_akaun']; ?></td>
|
||||
|
||||
<td style="width:20px;"></td>
|
||||
|
||||
<td class="right-label">No Akaun lama</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['no_akaun_lama']; ?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- MAKLUMAT PEMILIK -->
|
||||
<div class="section">MAKLUMAT PEMILIK</div>
|
||||
|
||||
<table>
|
||||
|
||||
<tr>
|
||||
<td class="label">Nama Pemilik</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['nama_pemilik']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Alamat Pos 1</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['alamatpos_1']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Alamat Pos 2</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['alamatpos_2']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Alamat Pos 3</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['alamatpos_3']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">IC No</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['ic_no']; ?></td>
|
||||
|
||||
<td style="width:20px;"></td>
|
||||
|
||||
<td class="right-label">Old IC No</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['old_ic_no']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Pelanggan</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['bangsa']; ?></td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<td class="right-label">Warganegara</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['warganegara']; ?></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<!-- KETERANGAN HARTA -->
|
||||
<div class="section">KETERANGAN HARTA</div>
|
||||
|
||||
<table>
|
||||
|
||||
<tr>
|
||||
<td class="label">No Lot / Petak</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['nolot']; ?></td>
|
||||
|
||||
<td style="width:20px;"></td>
|
||||
|
||||
<td class="right-label">No DHM</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['nogeran']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Jenis Tanah</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['kegunaan']; ?></td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<td class="right-label">Mukim</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box"><?php echo $data['mukim']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">No Bangunan</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['no_bangunan']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Lokasi Harta 1</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['lokasiharta_1']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Lokasi Harta 2</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['lokasiharta_2']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Kawasan</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['kawasan']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Jenis Bangunan</td>
|
||||
<td class="colon">:</td>
|
||||
<td colspan="5" class="box"><?php echo $data['jenisbangunan']; ?></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<!-- NILAIAN HARTA -->
|
||||
<div class="section">NILAIAN HARTA</div>
|
||||
|
||||
<table>
|
||||
|
||||
<tr>
|
||||
<td class="label">New Taksiran</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amount"><?php echo number_format($data['new_taksiran'],2); ?></td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<td class="right-label">New Kadar (%)</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="amount"><?php echo $data['kadar']; ?> %</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Cukai 1/2 Tahun</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amount"><?php echo number_format($data['cukai_setengahtahun'],2); ?></td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<td class="right-label">Kuatkuasa</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="amount"><?php echo $data['tarikh_kuatkuasa']; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Old Taksiran</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amount"><?php echo number_format($data['old_taksiran'],2); ?></td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<td class="right-label">Old Kadar (%)</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="amount"><?php echo $data['old_kadar']; ?> %</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<!-- MAKLUMAT TUNGGAKAN -->
|
||||
<div class="section">MAKLUMAT TUNGGAKAN</div>
|
||||
|
||||
<table>
|
||||
|
||||
<tr>
|
||||
<td class="label">Tunggakan Cukai</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['tunggakan_cukai'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Cukai Semasa 1</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['cukai_semasa_1'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Cukai Semasa 2</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['cukai_semasa_2'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Pelarasan</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['pelarasan_cukai'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Bayaran Cukai Diterima</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['bayaran_cukai_diterima'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Baki Cukai</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="total-baki amountf"><?php echo number_format($data['baki_cukai'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Baki Najis</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['baki_najis'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Baki Notis</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['baki_notis'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Baki Waran</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="amountf"><?php echo number_format($data['baki_waran'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="label">Jumlah Baki</td>
|
||||
<td class="colon">:</td>
|
||||
<td>RM</td>
|
||||
<td class="total-line amountf"><?php echo number_format($data['jumlah_baki'],2); ?></td>
|
||||
<td class="spx"><td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
<p><strong>Note:</strong> Maklumat ini sebagai rujukan, pengesahan harus melalui AVO kawasan</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
59
legacy_source/pilih_table.php
Normal file
59
legacy_source/pilih_table.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
session_start();
|
||||
|
||||
if(!isset($_SESSION['login'])){
|
||||
header("Location: login.php");
|
||||
exit();
|
||||
}
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Pilih Table</title>
|
||||
|
||||
<style>
|
||||
|
||||
body{
|
||||
font-family:Arial;
|
||||
background:#f0f0f0;
|
||||
}
|
||||
|
||||
.container{
|
||||
width:500px;
|
||||
background:white;
|
||||
margin:100px auto;
|
||||
padding:30px;
|
||||
border-radius:10px;
|
||||
}
|
||||
|
||||
a{
|
||||
display:block;
|
||||
padding:15px;
|
||||
background:#333;
|
||||
color:white;
|
||||
text-decoration:none;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<h2>PILIH TABLE</h2>
|
||||
|
||||
<a href="search.php?table=2013_ratemas">RateMas 2013</a>
|
||||
<a href="search.php?table=2014_ratemas">RateMas 2014</a>
|
||||
<a href="search.php?table=2015_ratemas">RateMas 2015</a>
|
||||
<a href="search.php?table=2016_ratemas">RateMas 2016</a>
|
||||
<a href="search.php?table=2017_ratemas">RateMas 2017</a>
|
||||
<a href="search.php?table=2018_ratemas">RateMas 2018</a>
|
||||
<a href="logout.php">Logout</a>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
74
legacy_source/search.php
Normal file
74
legacy_source/search.php
Normal file
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
session_start();
|
||||
include "db.php";
|
||||
|
||||
if(!isset($_SESSION['login'])){
|
||||
header("Location: login.php");
|
||||
exit();
|
||||
}
|
||||
|
||||
$table = $_GET['table'];
|
||||
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Search</title>
|
||||
|
||||
<style>
|
||||
|
||||
body{
|
||||
font-family:Arial;
|
||||
background:#f0f0f0;
|
||||
}
|
||||
|
||||
.container{
|
||||
width:500px;
|
||||
background:white;
|
||||
margin:100px auto;
|
||||
padding:30px;
|
||||
border-radius:10px;
|
||||
}
|
||||
|
||||
input{
|
||||
width:100%;
|
||||
padding:10px;
|
||||
margin-bottom:15px;
|
||||
}
|
||||
|
||||
button,a{
|
||||
padding:10px 15px;
|
||||
border:none;
|
||||
background:#333;
|
||||
color:white;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<h2>SEARCH NO AKAUN</h2>
|
||||
|
||||
<form method="GET" action="papar.php">
|
||||
|
||||
<input type="hidden" name="table" value="<?php echo $table; ?>">
|
||||
|
||||
<input type="text" name="noakaun" placeholder="Masukkan No Akaun" required>
|
||||
|
||||
<button type="submit">SEARCH</button>
|
||||
|
||||
</form>
|
||||
|
||||
<br>
|
||||
|
||||
<a href="pilih_table.php">KEMBALI</a>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
2899
package-lock.json
generated
Normal file
2899
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
17
package.json
Normal file
17
package.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "vite build",
|
||||
"dev": "vite"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.4.20",
|
||||
"axios": "^1.7.4",
|
||||
"concurrently": "^9.0.1",
|
||||
"laravel-vite-plugin": "^1.2.0",
|
||||
"postcss": "^8.4.47",
|
||||
"tailwindcss": "^3.4.13",
|
||||
"vite": "^6.0.11"
|
||||
}
|
||||
}
|
||||
33
phpunit.xml
Normal file
33
phpunit.xml
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||||
bootstrap="vendor/autoload.php"
|
||||
colors="true"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="Unit">
|
||||
<directory>tests/Unit</directory>
|
||||
</testsuite>
|
||||
<testsuite name="Feature">
|
||||
<directory>tests/Feature</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<source>
|
||||
<include>
|
||||
<directory>app</directory>
|
||||
</include>
|
||||
</source>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
|
||||
<env name="BCRYPT_ROUNDS" value="4"/>
|
||||
<env name="CACHE_STORE" value="array"/>
|
||||
<env name="DB_CONNECTION" value="sqlite"/>
|
||||
<env name="DB_DATABASE" value=":memory:"/>
|
||||
<env name="MAIL_MAILER" value="array"/>
|
||||
<env name="PULSE_ENABLED" value="false"/>
|
||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="TELESCOPE_ENABLED" value="false"/>
|
||||
</php>
|
||||
</phpunit>
|
||||
6
postcss.config.js
Normal file
6
postcss.config.js
Normal file
@@ -0,0 +1,6 @@
|
||||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
};
|
||||
25
public/.htaccess
Normal file
25
public/.htaccess
Normal file
@@ -0,0 +1,25 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Handle X-XSRF-Token Header
|
||||
RewriteCond %{HTTP:x-xsrf-token} .
|
||||
RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Send Requests To Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
0
public/favicon.ico
Normal file
0
public/favicon.ico
Normal file
17
public/index.php
Normal file
17
public/index.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Determine if the application is in maintenance mode...
|
||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||
require $maintenance;
|
||||
}
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the request...
|
||||
(require_once __DIR__.'/../bootstrap/app.php')
|
||||
->handleRequest(Request::capture());
|
||||
2
public/robots.txt
Normal file
2
public/robots.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
||||
3
resources/css/app.css
Normal file
3
resources/css/app.css
Normal file
@@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
1
resources/js/app.js
Normal file
1
resources/js/app.js
Normal file
@@ -0,0 +1 @@
|
||||
import './bootstrap';
|
||||
4
resources/js/bootstrap.js
vendored
Normal file
4
resources/js/bootstrap.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
import axios from 'axios';
|
||||
window.axios = axios;
|
||||
|
||||
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
36
resources/views/admin/ratemas-upload.blade.php
Normal file
36
resources/views/admin/ratemas-upload.blade.php
Normal file
@@ -0,0 +1,36 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<main class="page">
|
||||
<h1>Upload RateMas</h1>
|
||||
<p class="subtitle">Upload fail CSV atau XML tahunan. Fail asal tidak disimpan selepas data dimasukkan.</p>
|
||||
|
||||
@if (session('status'))
|
||||
<div class="notice">{{ session('status') }}</div>
|
||||
@endif
|
||||
|
||||
@if ($errors->any())
|
||||
<div class="error">{{ $errors->first() }}</div>
|
||||
@endif
|
||||
|
||||
<form method="POST" action="{{ route('admin.ratemas-upload.store') }}" enctype="multipart/form-data">
|
||||
@csrf
|
||||
|
||||
<label for="year">Tahun RateMas</label>
|
||||
<input id="year" type="number" name="year" min="1900" max="2100" value="{{ old('year', date('Y')) }}" required>
|
||||
|
||||
<label for="file">Fail CSV atau XML</label>
|
||||
<input id="file" type="file" name="file" accept=".csv,.txt,.xml,text/csv,text/plain,application/xml,text/xml" required>
|
||||
|
||||
<div class="checkbox-row">
|
||||
<input id="replace_existing" type="checkbox" name="replace_existing" value="1" @checked(old('replace_existing'))>
|
||||
<label for="replace_existing">Ganti data jika table tahun ini sudah wujud</label>
|
||||
</div>
|
||||
|
||||
<div class="actions">
|
||||
<button type="submit">Upload & Import</button>
|
||||
<a class="button secondary" href="{{ route('tables.index') }}">Kembali</a>
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
@endsection
|
||||
20
resources/views/auth/login.blade.php
Normal file
20
resources/views/auth/login.blade.php
Normal file
@@ -0,0 +1,20 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<main class="page">
|
||||
<h2>LOGIN</h2>
|
||||
|
||||
@error('username')
|
||||
<div class="error">{{ $message }}</div>
|
||||
@enderror
|
||||
|
||||
<form method="POST" action="{{ route('login.store') }}">
|
||||
@csrf
|
||||
|
||||
<input type="text" name="username" value="{{ old('username') }}" placeholder="Username" required autofocus>
|
||||
<input type="password" name="password" placeholder="Password" required>
|
||||
|
||||
<button type="submit">LOGIN</button>
|
||||
</form>
|
||||
</main>
|
||||
@endsection
|
||||
64
resources/views/layouts/app.blade.php
Normal file
64
resources/views/layouts/app.blade.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ms">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ $title ?? config('app.name') }}</title>
|
||||
<style>
|
||||
* { box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }
|
||||
body { margin: 0; min-height: 100vh; background: #f4f5f7; color: #1f2933; }
|
||||
.shell { min-height: 100vh; display: grid; grid-template-rows: auto 1fr; }
|
||||
.topbar { height: 58px; background: #1f2933; color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(16px, 4vw, 44px); }
|
||||
.brand { font-weight: 700; letter-spacing: 0; }
|
||||
.topbar-actions { display: flex; align-items: center; gap: 18px; }
|
||||
.topbar-link { color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
|
||||
.content { display: grid; place-items: start center; padding: clamp(28px, 7vw, 72px) 16px; }
|
||||
.page { width: min(760px, 100%); background: #fff; padding: clamp(22px, 4vw, 36px); border-radius: 8px; border: 1px solid #d8dde3; box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08); }
|
||||
h1, h2 { margin: 0 0 8px; }
|
||||
.subtitle { margin: 0 0 24px; color: #5f6b7a; font-size: 14px; }
|
||||
label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
|
||||
input, select { width: 100%; padding: 12px; margin-bottom: 16px; border: 1px solid #b8c0cc; border-radius: 6px; background: #fff; color: #1f2933; font-size: 15px; }
|
||||
input:focus, select:focus { outline: 3px solid rgba(37, 99, 235, 0.16); border-color: #2563eb; }
|
||||
button, .button { display: inline-block; padding: 11px 16px; border: 0; background: #1f2933; color: #fff; text-decoration: none; cursor: pointer; border-radius: 6px; font-size: 14px; font-weight: 700; }
|
||||
.button.secondary, button.secondary { background: #eef2f6; color: #1f2933; }
|
||||
.form-grid { display: grid; grid-template-columns: 1fr 180px; gap: 16px; align-items: end; }
|
||||
.actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
|
||||
.notice { background: #eef7ed; border: 1px solid #a9d3a5; color: #214f23; padding: 12px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }
|
||||
.checkbox-row { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
|
||||
.checkbox-row input { width: auto; margin: 0; }
|
||||
.checkbox-row label { margin: 0; font-weight: 400; }
|
||||
.error { color: #b00020; margin-bottom: 12px; font-size: 14px; }
|
||||
.logout-form { margin: 0; }
|
||||
.logout-form button { background: transparent; padding: 8px 0; font-weight: 700; }
|
||||
@media (max-width: 640px) {
|
||||
.topbar { height: auto; min-height: 58px; align-items: flex-start; padding-top: 14px; padding-bottom: 14px; gap: 12px; }
|
||||
.topbar-actions { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
|
||||
.form-grid { grid-template-columns: 1fr; gap: 0; }
|
||||
}
|
||||
</style>
|
||||
@stack('styles')
|
||||
</head>
|
||||
<body>
|
||||
<div class="shell">
|
||||
<header class="topbar">
|
||||
<div class="brand">{{ config('app.name') }}</div>
|
||||
@auth
|
||||
<div class="topbar-actions">
|
||||
<a class="topbar-link" href="{{ route('tables.index') }}">Carian</a>
|
||||
@if (auth()->user()->isAdmin())
|
||||
<a class="topbar-link" href="{{ route('admin.ratemas-upload.create') }}">Upload RateMas</a>
|
||||
@endif
|
||||
<form class="logout-form" method="POST" action="{{ route('logout') }}">
|
||||
@csrf
|
||||
<button type="submit">Logout</button>
|
||||
</form>
|
||||
</div>
|
||||
@endauth
|
||||
</header>
|
||||
|
||||
<div class="content">
|
||||
@yield('content')
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
35
resources/views/ratemas/index.blade.php
Normal file
35
resources/views/ratemas/index.blade.php
Normal file
@@ -0,0 +1,35 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<main class="page">
|
||||
<h1>Carian Akaun</h1>
|
||||
<p class="subtitle">Masukkan no akaun dan pilih tahun RateMas untuk membuka rekod cetakan.</p>
|
||||
|
||||
@if ($errors->any())
|
||||
<div class="error">{{ $errors->first() }}</div>
|
||||
@endif
|
||||
|
||||
<form method="GET" action="{{ route('ratemas.lookup') }}">
|
||||
<div class="form-grid">
|
||||
<div>
|
||||
<label for="noakaun">No Akaun</label>
|
||||
<input id="noakaun" type="text" name="noakaun" value="{{ old('noakaun', request('noakaun')) }}" placeholder="Contoh: A010100001" required autofocus>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="year">Tahun</label>
|
||||
<select id="year" name="year" required>
|
||||
@foreach ($tables as $table => $label)
|
||||
@php($year = substr($table, 0, 4))
|
||||
<option value="{{ $year }}" @selected(old('year', request('year', '2013')) === $year)>{{ $year }}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="actions">
|
||||
<button type="submit">Cari Rekod</button>
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
@endsection
|
||||
17
resources/views/ratemas/search.blade.php
Normal file
17
resources/views/ratemas/search.blade.php
Normal file
@@ -0,0 +1,17 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<main class="page">
|
||||
<h1>Carian Akaun</h1>
|
||||
<p class="subtitle">{{ $title }}</p>
|
||||
|
||||
<form method="GET" action="{{ route('ratemas.show', $table) }}">
|
||||
<label for="noakaun">No Akaun</label>
|
||||
<input type="text" name="noakaun" value="{{ old('noakaun') }}" placeholder="Masukkan No Akaun" required autofocus>
|
||||
<div class="actions">
|
||||
<button type="submit">Cari Rekod</button>
|
||||
<a class="button secondary" href="{{ route('tables.index') }}">Kembali</a>
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
@endsection
|
||||
168
resources/views/ratemas/show.blade.php
Normal file
168
resources/views/ratemas/show.blade.php
Normal file
@@ -0,0 +1,168 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ms">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ $title }}</title>
|
||||
|
||||
<style>
|
||||
* { box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }
|
||||
body { background: #e5e5e5; margin: 0; padding: 20px; }
|
||||
.a4 { width: 210mm; min-height: 297mm; background: #fff; margin: auto; padding: 25mm 18mm; }
|
||||
.title { font-size: 18px; font-weight: bold; text-decoration: underline; margin-bottom: 5px; }
|
||||
table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
|
||||
td { padding: 4px 6px; vertical-align: middle; font-size: 12px; }
|
||||
.label { width: 180px; }
|
||||
.colon { width: 15px; text-align: center; }
|
||||
.box { border: 0 solid #555; font-weight: bold; padding: 4px 8px; }
|
||||
.section { background: #d9d9d9; text-align: center; font-weight: bold; text-decoration: underline; padding: 4px; margin: 12px 0 9px; font-size: 13px; }
|
||||
.right-label { width: 140px; }
|
||||
.amount { font-weight: bold; }
|
||||
.amountf { font-weight: bold; text-align: right; }
|
||||
.total-baki { font-size: 12px; font-weight: bold; text-align: right; padding-top: 5px; padding-bottom: 3px; border-top: 1px solid black; border-bottom: 0 double black; }
|
||||
.total-line { font-size: 12px; font-weight: bold; text-align: right; padding-top: 5px; padding-bottom: 3px; border-top: 1px solid black; border-bottom: 3px double black; }
|
||||
.jkk { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 5px 0; text-decoration: none; font-size: 14px; margin: 8px 0; }
|
||||
.jkk-actions, .year-nav, .year-jump { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
|
||||
.jkk a, .jkk button, .jkk select { padding: 6px 10px; cursor: pointer; font-size: 13px; }
|
||||
.jkk a[aria-disabled="true"] button { cursor: not-allowed; opacity: .45; }
|
||||
.jkk form { margin: 0; }
|
||||
.jkk select { border: 1px solid #777; background: #fff; }
|
||||
.spx { width: 240px; }
|
||||
p { font-size: 11px; }
|
||||
@media print {
|
||||
body { background: white; padding: 0; }
|
||||
.a4 { width: 100%; min-height: auto; margin: 0; padding: 15mm; box-shadow: none; }
|
||||
.jkk { display: none; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@php
|
||||
$money = fn ($value) => number_format((float) ($value ?? 0), 2);
|
||||
@endphp
|
||||
|
||||
<div class="a4">
|
||||
<div class="title">{{ $title }}</div>
|
||||
|
||||
<div class="jkk">
|
||||
<div class="jkk-actions">
|
||||
<a href="{{ route('tables.index', ['noakaun' => $noakaun, 'year' => $currentYear]) }}"><button type="button">Kembali ke Search</button></a>
|
||||
<button type="button" onclick="window.print()">Cetak</button>
|
||||
</div>
|
||||
|
||||
<div class="year-nav">
|
||||
@if ($previousYear)
|
||||
<a href="{{ route('ratemas.show', ['table' => $previousYear.'_ratemas', 'noakaun' => $noakaun]) }}"><button type="button">Prev {{ $previousYear }}</button></a>
|
||||
@else
|
||||
<a aria-disabled="true"><button type="button" disabled>Prev</button></a>
|
||||
@endif
|
||||
|
||||
<form class="year-jump" method="GET" action="{{ route('ratemas.lookup') }}">
|
||||
<input type="hidden" name="noakaun" value="{{ $noakaun }}">
|
||||
<select name="year" aria-label="Pilih tahun">
|
||||
@foreach ($years as $year)
|
||||
<option value="{{ $year }}" @selected($year === $currentYear)>{{ $year }}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
<button type="submit">Pergi</button>
|
||||
</form>
|
||||
|
||||
@if ($nextYear)
|
||||
<a href="{{ route('ratemas.show', ['table' => $nextYear.'_ratemas', 'noakaun' => $noakaun]) }}"><button type="button">Next {{ $nextYear }}</button></a>
|
||||
@else
|
||||
<a aria-disabled="true"><button type="button" disabled>Next</button></a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="label">No Akaun</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box">{{ $record->no_akaun }}</td>
|
||||
<td style="width:20px;"></td>
|
||||
<td class="right-label">No Akaun lama</td>
|
||||
<td class="colon">:</td>
|
||||
<td class="box">{{ $record->no_akaun_lama }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="section">MAKLUMAT PEMILIK</div>
|
||||
|
||||
<table>
|
||||
<tr><td class="label">Nama Pemilik</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->nama_pemilik }}</td></tr>
|
||||
<tr><td class="label">Alamat Pos 1</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->alamatpos_1 }}</td></tr>
|
||||
<tr><td class="label">Alamat Pos 2</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->alamatpos_2 }}</td></tr>
|
||||
<tr><td class="label">Alamat Pos 3</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->alamatpos_3 }}</td></tr>
|
||||
<tr>
|
||||
<td class="label">IC No</td><td class="colon">:</td><td class="box">{{ $record->ic_no }}</td>
|
||||
<td style="width:20px;"></td>
|
||||
<td class="right-label">Old IC No</td><td class="colon">:</td><td class="box">{{ $record->old_ic_no }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">Pelanggan</td><td class="colon">:</td><td class="box">{{ $record->bangsa }}</td>
|
||||
<td></td>
|
||||
<td class="right-label">Warganegara</td><td class="colon">:</td><td class="box">{{ $record->warganegara }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="section">KETERANGAN HARTA</div>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="label">No Lot / Petak</td><td class="colon">:</td><td class="box">{{ $record->nolot }}</td>
|
||||
<td style="width:20px;"></td>
|
||||
<td class="right-label">No DHM</td><td class="colon">:</td><td class="box">{{ $record->nogeran }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">Jenis Tanah</td><td class="colon">:</td><td class="box">{{ $record->kegunaan }}</td>
|
||||
<td></td>
|
||||
<td class="right-label">Mukim</td><td class="colon">:</td><td class="box">{{ $record->mukim }}</td>
|
||||
</tr>
|
||||
<tr><td class="label">No Bangunan</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->no_bangunan }}</td></tr>
|
||||
<tr><td class="label">Lokasi Harta 1</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->lokasiharta_1 }}</td></tr>
|
||||
<tr><td class="label">Lokasi Harta 2</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->lokasiharta_2 }}</td></tr>
|
||||
<tr><td class="label">Kawasan</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->kawasan }}</td></tr>
|
||||
<tr><td class="label">Jenis Bangunan</td><td class="colon">:</td><td colspan="5" class="box">{{ $record->jenisbangunan }}</td></tr>
|
||||
</table>
|
||||
|
||||
<div class="section">NILAIAN HARTA</div>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="label">New Taksiran</td><td class="colon">:</td><td>RM</td><td class="amount">{{ $money($record->new_taksiran) }}</td>
|
||||
<td></td>
|
||||
<td class="right-label">New Kadar (%)</td><td class="colon">:</td><td class="amount">{{ $record->kadar }} %</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">Cukai 1/2 Tahun</td><td class="colon">:</td><td>RM</td><td class="amount">{{ $money($record->cukai_setengahtahun) }}</td>
|
||||
<td></td>
|
||||
<td class="right-label">Kuatkuasa</td><td class="colon">:</td><td class="amount">{{ $record->tarikh_kuatkuasa }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">Old Taksiran</td><td class="colon">:</td><td>RM</td><td class="amount">{{ $money($record->old_taksiran) }}</td>
|
||||
<td></td>
|
||||
<td class="right-label">Old Kadar (%)</td><td class="colon">:</td><td class="amount">{{ $record->old_kadar }} %</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="section">MAKLUMAT TUNGGAKAN</div>
|
||||
|
||||
<table>
|
||||
<tr><td class="label">Tunggakan Cukai</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->tunggakan_cukai) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Cukai Semasa 1</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->cukai_semasa_1) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Cukai Semasa 2</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->cukai_semasa_2) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Pelarasan</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->pelarasan_cukai) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Bayaran Cukai Diterima</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->bayaran_cukai_diterima) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Baki Cukai</td><td class="colon">:</td><td>RM</td><td class="total-baki amountf">{{ $money($record->baki_cukai) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Baki Najis</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->baki_najis) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Baki Notis</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->baki_notis) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Baki Waran</td><td class="colon">:</td><td>RM</td><td class="amountf">{{ $money($record->baki_waran) }}</td><td class="spx"></td></tr>
|
||||
<tr><td class="label">Jumlah Baki</td><td class="colon">:</td><td>RM</td><td class="total-line amountf">{{ $money($record->jumlah_baki) }}</td><td class="spx"></td></tr>
|
||||
</table>
|
||||
<p><strong>Note:</strong> Maklumat ini sebagai rujukan, pengesahan harus melalui AVO kawasan</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
176
resources/views/welcome.blade.php
Normal file
176
resources/views/welcome.blade.php
Normal file
File diff suppressed because one or more lines are too long
8
routes/console.php
Normal file
8
routes/console.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
28
routes/web.php
Normal file
28
routes/web.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\AuthController;
|
||||
use App\Http\Controllers\Admin\RateMasUploadController;
|
||||
use App\Http\Controllers\RateMasController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::middleware('guest')->group(function () {
|
||||
Route::get('/login', [AuthController::class, 'showLogin'])->name('login');
|
||||
Route::post('/login', [AuthController::class, 'login'])->name('login.store');
|
||||
});
|
||||
|
||||
Route::post('/logout', [AuthController::class, 'logout'])
|
||||
->middleware('auth')
|
||||
->name('logout');
|
||||
|
||||
Route::middleware('auth')->group(function () {
|
||||
Route::redirect('/', '/tables');
|
||||
Route::get('/tables', [RateMasController::class, 'index'])->name('tables.index');
|
||||
Route::get('/records/search', [RateMasController::class, 'lookup'])->name('ratemas.lookup');
|
||||
Route::get('/tables/{table}/search', [RateMasController::class, 'search'])->name('ratemas.search');
|
||||
Route::get('/tables/{table}/records', [RateMasController::class, 'show'])->name('ratemas.show');
|
||||
|
||||
Route::middleware('admin')->prefix('admin')->name('admin.')->group(function () {
|
||||
Route::get('/ratemas/upload', [RateMasUploadController::class, 'create'])->name('ratemas-upload.create');
|
||||
Route::post('/ratemas/upload', [RateMasUploadController::class, 'store'])->name('ratemas-upload.store');
|
||||
});
|
||||
});
|
||||
4
storage/app/.gitignore
vendored
Normal file
4
storage/app/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*
|
||||
!private/
|
||||
!public/
|
||||
!.gitignore
|
||||
2
storage/app/private/.gitignore
vendored
Normal file
2
storage/app/private/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/app/public/.gitignore
vendored
Normal file
2
storage/app/public/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
9
storage/framework/.gitignore
vendored
Normal file
9
storage/framework/.gitignore
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
compiled.php
|
||||
config.php
|
||||
down
|
||||
events.scanned.php
|
||||
maintenance.php
|
||||
routes.php
|
||||
routes.scanned.php
|
||||
schedule-*
|
||||
services.json
|
||||
3
storage/framework/cache/.gitignore
vendored
Normal file
3
storage/framework/cache/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*
|
||||
!data/
|
||||
!.gitignore
|
||||
2
storage/framework/cache/data/.gitignore
vendored
Normal file
2
storage/framework/cache/data/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/framework/sessions/.gitignore
vendored
Normal file
2
storage/framework/sessions/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/framework/testing/.gitignore
vendored
Normal file
2
storage/framework/testing/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/framework/views/.gitignore
vendored
Normal file
2
storage/framework/views/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
storage/logs/.gitignore
vendored
Normal file
2
storage/logs/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
20
tailwind.config.js
Normal file
20
tailwind.config.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import defaultTheme from 'tailwindcss/defaultTheme';
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
|
||||
'./storage/framework/views/*.php',
|
||||
'./resources/**/*.blade.php',
|
||||
'./resources/**/*.js',
|
||||
'./resources/**/*.vue',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
15
tests/Feature/ExampleTest.php
Normal file
15
tests/Feature/ExampleTest.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Tests\TestCase;
|
||||
|
||||
class ExampleTest extends TestCase
|
||||
{
|
||||
public function test_home_redirects_guests_to_login(): void
|
||||
{
|
||||
$response = $this->get('/');
|
||||
|
||||
$response->assertRedirect('/login');
|
||||
}
|
||||
}
|
||||
182
tests/Feature/RateMasWorkflowTest.php
Normal file
182
tests/Feature/RateMasWorkflowTest.php
Normal file
@@ -0,0 +1,182 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Http\UploadedFile;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Tests\TestCase;
|
||||
|
||||
class RateMasWorkflowTest extends TestCase
|
||||
{
|
||||
use RefreshDatabase;
|
||||
|
||||
public function test_user_can_login_and_open_account_search(): void
|
||||
{
|
||||
User::create([
|
||||
'name' => 'User Cukai',
|
||||
'username' => 'cukai',
|
||||
'email' => 'cukai@example.local',
|
||||
'password' => '123',
|
||||
]);
|
||||
|
||||
$this->post('/login', [
|
||||
'username' => 'cukai',
|
||||
'password' => '123',
|
||||
])->assertRedirect('/tables');
|
||||
|
||||
$this->get('/tables')
|
||||
->assertOk()
|
||||
->assertSee('Carian Akaun')
|
||||
->assertSee('A010100001');
|
||||
}
|
||||
|
||||
public function test_authenticated_user_can_submit_account_and_year_to_print_record(): void
|
||||
{
|
||||
$this->actingAs(User::create([
|
||||
'name' => 'User Cukai',
|
||||
'username' => 'cukai',
|
||||
'email' => 'cukai@example.local',
|
||||
'password' => '123',
|
||||
]));
|
||||
|
||||
$this->createRateMasTable('2013_ratemas');
|
||||
|
||||
$this->get('/records/search?noakaun=A001&year=2013')
|
||||
->assertRedirect('/tables/2013_ratemas/records?noakaun=A001');
|
||||
|
||||
$this->get('/tables/2013_ratemas/records?noakaun=A001')
|
||||
->assertOk()
|
||||
->assertSee('RateMas 2013')
|
||||
->assertSee('A001')
|
||||
->assertSee('Ali Ahmad')
|
||||
->assertSee('Next 2014')
|
||||
->assertSee('/records/search', false)
|
||||
->assertSee('Cetak');
|
||||
}
|
||||
|
||||
public function test_print_record_has_previous_and_next_year_navigation(): void
|
||||
{
|
||||
$this->actingAs(User::create([
|
||||
'name' => 'User Cukai',
|
||||
'username' => 'cukai',
|
||||
'email' => 'cukai@example.local',
|
||||
'password' => '123',
|
||||
]));
|
||||
|
||||
$this->createRateMasTable('2014_ratemas');
|
||||
|
||||
$this->get('/tables/2014_ratemas/records?noakaun=A001')
|
||||
->assertOk()
|
||||
->assertSee('Prev 2013')
|
||||
->assertSee('Next 2015')
|
||||
->assertSee('value="2014"', false);
|
||||
}
|
||||
|
||||
public function test_regular_user_cannot_open_admin_upload_page(): void
|
||||
{
|
||||
$this->actingAs(User::create([
|
||||
'name' => 'User Cukai',
|
||||
'username' => 'cukai',
|
||||
'email' => 'cukai@example.local',
|
||||
'password' => '123',
|
||||
]));
|
||||
|
||||
$this->get('/admin/ratemas/upload')->assertForbidden();
|
||||
}
|
||||
|
||||
public function test_admin_can_upload_csv_and_create_year_table(): void
|
||||
{
|
||||
$this->actingAs(User::create([
|
||||
'name' => 'Admin',
|
||||
'username' => 'admin',
|
||||
'role' => 'admin',
|
||||
'email' => 'admin@example.local',
|
||||
'password' => 'admin123',
|
||||
]));
|
||||
|
||||
$csv = implode("\n", [
|
||||
'no_akaun,nama_pemilik,jumlah_baki',
|
||||
'A009,Siti Aminah,123.45',
|
||||
]);
|
||||
|
||||
$this->post('/admin/ratemas/upload', [
|
||||
'year' => 2020,
|
||||
'file' => UploadedFile::fake()->createWithContent('ratemas-2020.csv', $csv),
|
||||
])->assertRedirect('/admin/ratemas/upload');
|
||||
|
||||
$this->assertTrue(Schema::hasTable('2020_ratemas'));
|
||||
$this->assertSame('Siti Aminah', DB::table('2020_ratemas')->where('no_akaun', 'A009')->value('nama_pemilik'));
|
||||
|
||||
$this->get('/tables/2020_ratemas/records?noakaun=A009')
|
||||
->assertOk()
|
||||
->assertSee('RateMas 2020')
|
||||
->assertSee('Siti Aminah');
|
||||
}
|
||||
|
||||
private function createRateMasTable(string $table): void
|
||||
{
|
||||
Schema::create($table, function ($table) {
|
||||
$table->string('no_akaun')->primary();
|
||||
$table->string('no_akaun_lama')->nullable();
|
||||
$table->string('nama_pemilik')->nullable();
|
||||
$table->string('alamatpos_1')->nullable();
|
||||
$table->string('alamatpos_2')->nullable();
|
||||
$table->string('alamatpos_3')->nullable();
|
||||
$table->string('ic_no')->nullable();
|
||||
$table->string('old_ic_no')->nullable();
|
||||
$table->string('bangsa')->nullable();
|
||||
$table->string('warganegara')->nullable();
|
||||
$table->string('nolot')->nullable();
|
||||
$table->string('nogeran')->nullable();
|
||||
$table->string('kegunaan')->nullable();
|
||||
$table->string('mukim')->nullable();
|
||||
$table->string('no_bangunan')->nullable();
|
||||
$table->string('lokasiharta_1')->nullable();
|
||||
$table->string('lokasiharta_2')->nullable();
|
||||
$table->string('kawasan')->nullable();
|
||||
$table->string('jenisbangunan')->nullable();
|
||||
$table->decimal('new_taksiran', 12, 2)->default(0);
|
||||
$table->decimal('kadar', 6, 2)->default(0);
|
||||
$table->decimal('cukai_setengahtahun', 12, 2)->default(0);
|
||||
$table->string('tarikh_kuatkuasa')->nullable();
|
||||
$table->decimal('old_taksiran', 12, 2)->default(0);
|
||||
$table->decimal('old_kadar', 6, 2)->default(0);
|
||||
$table->decimal('tunggakan_cukai', 12, 2)->default(0);
|
||||
$table->decimal('cukai_semasa_1', 12, 2)->default(0);
|
||||
$table->decimal('cukai_semasa_2', 12, 2)->default(0);
|
||||
$table->decimal('pelarasan_cukai', 12, 2)->default(0);
|
||||
$table->decimal('bayaran_cukai_diterima', 12, 2)->default(0);
|
||||
$table->decimal('baki_cukai', 12, 2)->default(0);
|
||||
$table->decimal('baki_najis', 12, 2)->default(0);
|
||||
$table->decimal('baki_notis', 12, 2)->default(0);
|
||||
$table->decimal('baki_waran', 12, 2)->default(0);
|
||||
$table->decimal('jumlah_baki', 12, 2)->default(0);
|
||||
});
|
||||
|
||||
\DB::table($table)->insert([
|
||||
'no_akaun' => 'A001',
|
||||
'no_akaun_lama' => 'OLD001',
|
||||
'nama_pemilik' => 'Ali Ahmad',
|
||||
'alamatpos_1' => 'Alamat 1',
|
||||
'alamatpos_2' => 'Alamat 2',
|
||||
'alamatpos_3' => 'Alamat 3',
|
||||
'ic_no' => '900101010101',
|
||||
'old_ic_no' => 'A1234567',
|
||||
'bangsa' => 'Melayu',
|
||||
'warganegara' => 'Malaysia',
|
||||
'nolot' => 'Lot 1',
|
||||
'nogeran' => 'DHM 1',
|
||||
'kegunaan' => 'Kediaman',
|
||||
'mukim' => 'Mukim A',
|
||||
'no_bangunan' => 'B1',
|
||||
'lokasiharta_1' => 'Lokasi 1',
|
||||
'lokasiharta_2' => 'Lokasi 2',
|
||||
'kawasan' => 'Kawasan A',
|
||||
'jenisbangunan' => 'Rumah',
|
||||
'tarikh_kuatkuasa' => '01/01/2013',
|
||||
]);
|
||||
}
|
||||
}
|
||||
10
tests/TestCase.php
Normal file
10
tests/TestCase.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Tests;
|
||||
|
||||
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
||||
|
||||
abstract class TestCase extends BaseTestCase
|
||||
{
|
||||
//
|
||||
}
|
||||
16
tests/Unit/ExampleTest.php
Normal file
16
tests/Unit/ExampleTest.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class ExampleTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* A basic test example.
|
||||
*/
|
||||
public function test_that_true_is_true(): void
|
||||
{
|
||||
$this->assertTrue(true);
|
||||
}
|
||||
}
|
||||
11
vite.config.js
Normal file
11
vite.config.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import laravel from 'laravel-vite-plugin';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
laravel({
|
||||
input: ['resources/css/app.css', 'resources/js/app.js'],
|
||||
refresh: true,
|
||||
}),
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user