diff --git a/resources/lang/en/payment.php b/resources/lang/en/payment.php index 4dac411..fc6be37 100644 --- a/resources/lang/en/payment.php +++ b/resources/lang/en/payment.php @@ -29,11 +29,13 @@ return [ 'search' => 'Search Project Payment', 'print' => 'Print Receipt', - // Attrubutes + // Attributes 'id' => 'Payment ID', - 'description' => 'description', + 'description' => 'Description', 'date' => 'Payment Date', 'in_out' => 'Transaction Type', + 'in' => 'Cash in', + 'out' => 'Cash out', 'type' => 'Payment Type', 'project' => 'Project', 'customer' => 'Customer', diff --git a/resources/lang/en/project.php b/resources/lang/en/project.php index 7f396c0..dd2fbf3 100644 --- a/resources/lang/en/project.php +++ b/resources/lang/en/project.php @@ -19,6 +19,14 @@ return [ 'payment_remaining' => 'Payment Remaining', 'earnings_calculation' => 'Earnings Calculation', + // Payments + 'payment_summary' => 'Payment Summary', + 'payment_status' => 'Payment Status', + 'payment_statuses' => [ + 'paid' => 'Paid', + 'outstanding' => 'Outstanding', + ], + // Actions 'create' => 'Create new Project', 'created' => 'New Project has been created.', diff --git a/resources/lang/id/payment.php b/resources/lang/id/payment.php index 9f6a935..e25c54c 100644 --- a/resources/lang/id/payment.php +++ b/resources/lang/id/payment.php @@ -29,11 +29,13 @@ return [ 'search' => 'Cari Pembayaran Project', 'print' => 'Cetak Kuitansi', - // Attrubutes + // Attributes 'id' => 'ID Pembayaran', 'description' => 'Untuk Pembayaran', 'date' => 'Tanggal Pembayaran', 'in_out' => 'Jenis Transaksi', + 'in' => 'Pemasukan', + 'out' => 'Pengeluaran', 'type' => 'Jenis Pembayaran', 'project' => 'Project', 'customer' => 'Dari/Kepada', diff --git a/resources/lang/id/project.php b/resources/lang/id/project.php index e447e3f..94f056c 100644 --- a/resources/lang/id/project.php +++ b/resources/lang/id/project.php @@ -19,6 +19,14 @@ return [ 'payment_remaining' => 'Sisa', 'earnings_calculation' => 'Rumus Pendapatan', + // Payments + 'payment_summary' => 'Summary Pembayaran', + 'payment_status' => 'Status', + 'payment_statuses' => [ + 'paid' => 'Lunas', + 'outstanding' => 'Belum Lunas', + ], + // Actions 'create' => 'Input Project Baru', 'created' => 'Input Project baru telah berhasil.', diff --git a/resources/views/payments/create.blade.php b/resources/views/payments/create.blade.php index 34a8d83..9959006 100755 --- a/resources/views/payments/create.blade.php +++ b/resources/views/payments/create.blade.php @@ -17,15 +17,15 @@