chore: update file permissions to executable for multiple project files

This commit is contained in:
Yoga Pangestu 2026-07-13 21:40:04 +07:00
parent 909e7c787c
commit a78cc657dc
457 changed files with 4 additions and 96 deletions

0
.editorconfig Normal file → Executable file
View File

0
.env.example Normal file → Executable file
View File

0
.gitattributes vendored Normal file → Executable file
View File

0
.gitignore vendored Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
app/Helpers/date_helpers.php Normal file → Executable file
View File

0
app/Helpers/encryption_helpers.php Normal file → Executable file
View File

0
app/Helpers/setting_helpers.php Normal file → Executable file
View File

0
app/Helpers/string_helpers.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/Auth/LoginController.php Normal file → Executable file
View File

View File

View File

0
app/Http/Controllers/Admin/Finance/CashController.php Normal file → Executable file
View File

0
app/Http/Controllers/Admin/Finance/DebtController.php Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

0
app/Http/Controllers/Admin/Master/UserController.php Normal file → Executable file
View File

View File

View File

0
app/Http/Controllers/Client/HomepageController.php Normal file → Executable file
View File

0
app/Http/Controllers/Controller.php Normal file → Executable file
View File

0
app/Http/Middleware/CheckRole.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Finance/CashRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Finance/DebtRequest.php Normal file → Executable file
View File

View File

0
app/Http/Requests/Admin/Finance/ExpenseRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Finance/PayrollRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Manage/AttendanceRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Manage/InventoryRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Manage/TransactionRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Master/BarbershopRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Master/CustomerRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Master/ServiceRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Master/UserRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Setting/ApplicationRequest.php Normal file → Executable file
View File

0
app/Http/Requests/Admin/Setting/PasswordRequest.php Normal file → Executable file
View File

2
app/Http/Requests/Auth/LoginRequest.php Normal file → Executable file
View File

@ -20,7 +20,7 @@ public function rules(): array
return [ return [
'login' => 'required|string|max:255', 'login' => 'required|string|max:255',
'password' => 'required|string|min:8|max:60', 'password' => 'required|string|min:8|max:60',
'g-recaptcha-response' => 'recaptcha', // 'g-recaptcha-response' => 'recaptcha',
]; ];
} }

0
app/Models/Attachment.php Normal file → Executable file
View File

0
app/Models/Attendance.php Normal file → Executable file
View File

0
app/Models/Barbershop.php Normal file → Executable file
View File

0
app/Models/Biography.php Normal file → Executable file
View File

0
app/Models/Cash.php Normal file → Executable file
View File

0
app/Models/Customer.php Normal file → Executable file
View File

0
app/Models/Debt.php Normal file → Executable file
View File

0
app/Models/DepositMoney.php Normal file → Executable file
View File

0
app/Models/Expense.php Normal file → Executable file
View File

0
app/Models/Inventory.php Normal file → Executable file
View File

0
app/Models/Payroll.php Normal file → Executable file
View File

0
app/Models/Role.php Normal file → Executable file
View File

0
app/Models/Service.php Normal file → Executable file
View File

0
app/Models/Setting.php Normal file → Executable file
View File

0
app/Models/Transaction.php Normal file → Executable file
View File

0
app/Models/User.php Normal file → Executable file
View File

0
app/Observers/BarbershopObserver.php Normal file → Executable file
View File

0
app/Observers/ExpenseObserver.php Normal file → Executable file
View File

0
app/Observers/UserObserver.php Normal file → Executable file
View File

0
app/Providers/AppServiceProvider.php Normal file → Executable file
View File

0
app/Providers/RouteServiceProvider.php Normal file → Executable file
View File

0
app/Traits/DeleteAttachment.php Normal file → Executable file
View File

0
app/Traits/NotificationTrait.php Normal file → Executable file
View File

0
app/Traits/UploadAttachment.php Normal file → Executable file
View File

0
bootstrap/app.php Normal file → Executable file
View File

0
bootstrap/cache/.gitignore vendored Normal file → Executable file
View File

0
bootstrap/providers.php Normal file → Executable file
View File

0
composer.json Normal file → Executable file
View File

0
composer.lock generated Normal file → Executable file
View File

0
config/app.php Normal file → Executable file
View File

0
config/auth.php Normal file → Executable file
View File

0
config/cache.php Normal file → Executable file
View File

0
config/database.php Normal file → Executable file
View File

0
config/datatables.php Normal file → Executable file
View File

0
config/filesystems.php Normal file → Executable file
View File

0
config/logging.php Normal file → Executable file
View File

0
config/mail.php Normal file → Executable file
View File

0
config/notify.php Normal file → Executable file
View File

0
config/queue.php Normal file → Executable file
View File

0
config/recaptcha.php Normal file → Executable file
View File

0
config/services.php Normal file → Executable file
View File

0
config/session.php Normal file → Executable file
View File

0
database/.gitignore vendored Normal file → Executable file
View File

0
database/factories/UserFactory.php Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

View File

@ -18,6 +18,7 @@ public function up(): void
$table->string('name'); $table->string('name');
$table->decimal('amount', 10, 2); $table->decimal('amount', 10, 2);
$table->enum('use_cash', ['1', '2'])->default('2')->comment('1:Yes 2:No'); $table->enum('use_cash', ['1', '2'])->default('2')->comment('1:Yes 2:No');
$table->enum('type', ['1', '2'])->default('1')->comment('1:Bukan Barang 2:Barang');
$table->timestamps(); $table->timestamps();
$table->softDeletes(); $table->softDeletes();
}); });

View File

View File

View File

View File

@ -14,6 +14,7 @@ public function up(): void
Schema::create('transactions', function (Blueprint $table) { Schema::create('transactions', function (Blueprint $table) {
$table->id(); $table->id();
$table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->foreignId('user_id')->constrained()->cascadeOnDelete();
$table->foreignId('cashier_id')->constrained('users')->cascadeOnDelete();
$table->foreignId('barbershop_id')->constrained('barbershop')->cascadeOnDelete(); $table->foreignId('barbershop_id')->constrained('barbershop')->cascadeOnDelete();
$table->foreignId('customer_id')->constrained()->cascadeOnDelete(); $table->foreignId('customer_id')->constrained()->cascadeOnDelete();
$table->foreignId('service_id')->constrained()->cascadeOnDelete(); $table->foreignId('service_id')->constrained()->cascadeOnDelete();
@ -21,6 +22,7 @@ public function up(): void
$table->decimal('discount', 8, 2)->default(0); $table->decimal('discount', 8, 2)->default(0);
$table->decimal('total', 9, 2); $table->decimal('total', 9, 2);
$table->enum('payment_method', ['1', '2', '3'])->comment('1:Cash 2:Qris 3:Other'); $table->enum('payment_method', ['1', '2', '3'])->comment('1:Cash 2:Qris 3:Other');
$table->enum('is_paid', ['0', '1'])->comment('0:belum dibayarkan gaji 1:Sudah dibayarkan gaji')->default('0');
$table->timestamps(); $table->timestamps();
$table->softDeletes(); $table->softDeletes();
}); });

Some files were not shown because too many files have changed in this diff Show More