initial commit
parents
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
app/Enums/Permission.php
0 → 100644
app/Enums/UserStatus.php
0 → 100644
app/Http/Controllers/Auth/Logout.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/DashboardController.php
0 → 100644
app/Http/Controllers/Home.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Requests/Auth/LoginRequest.php
0 → 100644
app/Models/User.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
bootstrap/providers.php
0 → 100644
composer.json
0 → 100644
| { | ||
| "$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": "^12.0", | ||
| "laravel/tinker": "^2.10.1", | ||
| "laravolt/laravolt": "^6.14" | ||
| }, | ||
| "require-dev": { | ||
| "fakerphp/faker": "^1.23", | ||
| "laravel/pail": "^1.2.2", | ||
| "laravel/pint": "^1.13", | ||
| "laravel/sail": "^1.41", | ||
| "mockery/mockery": "^1.6", | ||
| "nunomaduro/collision": "^8.6", | ||
| "phpunit/phpunit": "^11.5.3" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "App\\": "app/", | ||
| "Database\\Factories\\": "database/factories/", | ||
| "Database\\Seeders\\": "database/seeders/" | ||
| } | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "Tests\\": "tests/" | ||
| } | ||
| }, | ||
| "scripts": { | ||
| "post-autoload-dump": [ | ||
| "@php artisan config:clear", | ||
| "@php artisan clear-compiled", | ||
| "@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" | ||
| ], | ||
| "test": [ | ||
| "@php artisan config:clear --ansi", | ||
| "@php artisan test" | ||
| ] | ||
| }, | ||
| "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 | ||
| } |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/cache.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/laravolt/asset.php
0 → 100644
config/laravolt/auto-crud.php
0 → 100644
config/laravolt/database-monitor.php
0 → 100644
config/laravolt/epicentrum.php
0 → 100644
config/laravolt/lookup.php
0 → 100644
config/laravolt/menu/system.php
0 → 100644
config/laravolt/password.php
0 → 100644
config/laravolt/platform.php
0 → 100644
config/laravolt/ui.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
database/.gitignore
0 → 100644
database/factories/UserFactory.php
0 → 100644
database/seeders/DatabaseSeeder.php
0 → 100644
package.json
0 → 100644
| { | ||
| "$schema": "https://json.schemastore.org/package.json", | ||
| "private": true, | ||
| "type": "module", | ||
| "scripts": { | ||
| "build": "vite build", | ||
| "dev": "vite" | ||
| }, | ||
| "devDependencies": { | ||
| "@tailwindcss/vite": "^4.0.0", | ||
| "axios": "^1.11.0", | ||
| "concurrently": "^9.0.1", | ||
| "laravel-vite-plugin": "^2.0.0", | ||
| "tailwindcss": "^4.0.0", | ||
| "vite": "^7.0.4" | ||
| } | ||
| } |
phpstan.neon.dist
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/favicon.ico
0 → 100644
public/index.php
0 → 100644
public/robots.txt
0 → 100644
resources/css/app.css
0 → 100644
resources/js/app.js
0 → 100644
resources/js/bootstrap.js
0 → 100644
resources/lang/id/auth.php
0 → 100644
resources/lang/id/pagination.php
0 → 100644
resources/lang/id/passwords.php
0 → 100644
resources/lang/id/validation.php
0 → 100644
resources/views/auth/forgot.blade.php
0 → 100644
resources/views/auth/login.blade.php
0 → 100644
resources/views/auth/register.blade.php
0 → 100644
resources/views/auth/reset.blade.php
0 → 100644
resources/views/auth/verify-email.blade.php
0 → 100644
resources/views/dashboard.blade.php
0 → 100644
resources/views/home.blade.php
0 → 100644
resources/views/my/password/edit.blade.php
0 → 100644
resources/views/my/profile/edit.blade.php
0 → 100644
resources/views/welcome.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/auth.php
0 → 100644
routes/console.php
0 → 100644
routes/my.php
0 → 100644
routes/web.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/app/private/.gitignore
0 → 100644
storage/app/public/.gitignore
0 → 100644
storage/debugbar/.gitignore
0 → 100644
storage/framework/.gitignore
0 → 100644
storage/framework/cache/.gitignore
0 → 100644
storage/framework/cache/data/.gitignore
0 → 100644
storage/framework/sessions/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/testing/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/views/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/logs/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/ApiRateLimiterTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/ForgotPasswordTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/LoginTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/LogoutTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/RedirectToHomeTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/RegistrationTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/ResetPasswordTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/Auth/VerificationTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/AuthenticateMiddlewareTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/ExceptionHandlerTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/My/MyPasswordTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/My/MyProfileTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/TestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Unit/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
vite.config.js
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment