├── .editorconfig ├── .env.example ├── .env.testing ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .styleci.yml ├── CONTRIBUTING.md ├── Modules ├── Dashboard │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ └── .gitkeep │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── DashboardDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ └── .gitkeep │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── DashboardController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Livewire │ │ └── FinanceDashboardChart.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── DashboardServiceProvider.php │ │ ├── LivewireServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── index.blade.php │ │ │ └── livewire │ │ │ └── payment-chart.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Document │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ └── 2021_05_29_062050_create_documents_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── DocumentDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Datatables │ │ └── DocumentDatatable.php │ ├── Entities │ │ ├── .gitkeep │ │ └── Document.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── DocumentController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── DocumentServiceProvider.php │ │ ├── LivewireServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── action.blade.php │ │ │ ├── component.blade.php │ │ │ └── index.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Master │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Constants │ │ ├── ReligionConstant.php │ │ ├── SchoolLevelConstant.php │ │ ├── SexConstant.php │ │ └── StudentConstant.php │ ├── Database │ │ ├── Factories │ │ │ ├── .gitkeep │ │ │ ├── RoomFactory.php │ │ │ ├── StudentFactory.php │ │ │ └── UserFactory.php │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_04_04_173633_create_users_table.php │ │ │ ├── 2021_04_04_173715_create_password_resets_table.php │ │ │ ├── 2021_04_04_173747_create_failed_jobs_table.php │ │ │ ├── 2021_04_04_174704_create_settings_table.php │ │ │ ├── 2021_04_06_032813_create_rooms_table.php │ │ │ ├── 2021_04_08_082159_create_students_table.php │ │ │ ├── 2021_04_21_180005_create_school_years_table.php │ │ │ ├── 2021_04_22_183631_create_majors_table.php │ │ │ └── 2021_04_23_114758_create_bills_table.php │ │ └── Seeders │ │ │ ├── .gitkeep │ │ │ └── MasterDatabaseSeeder.php │ ├── Datatables │ │ ├── BillDatatable.php │ │ ├── FirstMoveRoomDatatable.php │ │ ├── RoomDatatable.php │ │ ├── SchoolYearDatatable.php │ │ ├── SecondMoveRoomDatatable.php │ │ └── StudentDatatable.php │ ├── Entities │ │ ├── .gitkeep │ │ ├── Bill.php │ │ ├── Room.php │ │ ├── SchoolYear.php │ │ ├── Student.php │ │ └── User.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── BillController.php │ │ │ ├── Json │ │ │ │ ├── ConstantJsonController.php │ │ │ │ ├── RoomJsonController.php │ │ │ │ └── SchoolYearJsonController.php │ │ │ ├── MajorController.php │ │ │ ├── MasterController.php │ │ │ ├── RoomController.php │ │ │ ├── SchoolYearController.php │ │ │ └── StudentController.php │ │ ├── Livewire │ │ │ └── Student │ │ │ │ └── Form.php │ │ ├── Middleware │ │ │ ├── .gitkeep │ │ │ └── TenantMiddleware.php │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── BillRequest.php │ │ │ ├── InstallRequest.php │ │ │ ├── RoomRequest.php │ │ │ ├── SchoolYearRequest.php │ │ │ └── StudentRequest.php │ ├── Imports │ │ ├── BillImport.php │ │ ├── RoomImport.php │ │ ├── SchoolYearImport.php │ │ └── StudentImport.php │ ├── Observer │ │ ├── BillObserver.php │ │ ├── RoomObserver.php │ │ ├── SchoolYearObserver.php │ │ └── StudentObserver.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── EventServiceProvider.php │ │ ├── LivewireServiceProvider.php │ │ ├── MasterServiceProvider.php │ │ ├── RepositoryServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Repository │ │ ├── BillRepository.php │ │ ├── Eloquent │ │ │ ├── BillEloquent.php │ │ │ ├── RoomEloquent.php │ │ │ ├── SchoolYearEloquent.php │ │ │ └── StudentEloquent.php │ │ ├── RoomRepository.php │ │ ├── SchoolYearRepository.php │ │ └── StudentRepository.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── bill │ │ │ ├── action.blade.php │ │ │ ├── component.blade.php │ │ │ └── index.blade.php │ │ │ ├── room │ │ │ ├── action.blade.php │ │ │ ├── component.blade.php │ │ │ └── index.blade.php │ │ │ ├── school-year │ │ │ ├── action.blade.php │ │ │ ├── component.blade.php │ │ │ └── index.blade.php │ │ │ └── student │ │ │ ├── action.blade.php │ │ │ ├── card-header-form.blade.php │ │ │ ├── component.blade.php │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── livewire │ │ │ └── form.blade.php │ │ │ ├── room │ │ │ ├── first.blade.php │ │ │ ├── index.blade.php │ │ │ └── second.blade.php │ │ │ └── status │ │ │ └── index.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Payment │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Constants │ │ └── PaymentStatus.php │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ ├── 2021_05_05_042420_create_payments_table.php │ │ │ └── 2021_05_26_024407_create_spendings_table.php │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── PaymentDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Datatables │ │ └── SpendingDatatable.php │ ├── Entities │ │ ├── .gitkeep │ │ ├── Payment.php │ │ └── Spending.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── PaymentController.php │ │ │ └── SpendingController.php │ │ ├── Livewire │ │ │ └── StudentPayment.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── PaymentRequest.php │ │ │ └── SpendingRequest.php │ ├── Observer │ │ ├── PaymentObserver.php │ │ └── SpendingObserver.php │ ├── Pdf │ │ ├── PaymentMonthlyPdf.php │ │ ├── PaymentNotMonthlyPdf.php │ │ └── PaymentYearlyPdf.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── EventServiceProvider.php │ │ ├── LivewireServiceProvider.php │ │ ├── PaymentServiceProvider.php │ │ ├── RepositoryServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Repository │ │ ├── Eloquent │ │ │ ├── PaymentEloquent.php │ │ │ └── SpendingEloquent.php │ │ ├── PaymentRepository.php │ │ └── SpendingRepository.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── livewire │ │ │ └── payment.blade.php │ │ │ ├── payment │ │ │ ├── index.blade.php │ │ │ ├── pdf │ │ │ │ ├── monthly.blade.php │ │ │ │ └── yearly.blade.php │ │ │ └── print │ │ │ │ ├── monthly.blade.php │ │ │ │ ├── not-monthly.blade.php │ │ │ │ └── yearly.blade.php │ │ │ └── spending │ │ │ ├── action.blade.php │ │ │ ├── component.blade.php │ │ │ └── index.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Rules │ │ ├── PaySmaller.php │ │ └── SpendingAboveIncome.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── Utils │ │ └── Trx.php │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Report │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ └── .gitkeep │ │ ├── Seeders │ │ │ ├── .gitkeep │ │ │ └── ReportDatabaseSeeder.php │ │ └── factories │ │ │ └── .gitkeep │ ├── Entities │ │ └── .gitkeep │ ├── Exports │ │ └── StudentExport.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── ReportController.php │ │ ├── Livewire │ │ │ ├── Finance │ │ │ │ ├── IncomeChart.php │ │ │ │ └── SpendingChart.php │ │ │ └── Student │ │ │ │ ├── ExportStudent.php │ │ │ │ └── StudentChart.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── LivewireServiceProvider.php │ │ ├── ReportServiceProvider.php │ │ ├── RepositoryServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Repository │ │ ├── Eloquent │ │ │ └── IncomeEloquent.php │ │ └── IncomeRepository.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── finance │ │ │ ├── index.blade.php │ │ │ └── livewire │ │ │ │ ├── export.blade.php │ │ │ │ ├── income-chart.blade.php │ │ │ │ └── spending-chart.blade.php │ │ │ ├── index.blade.php │ │ │ └── student │ │ │ ├── excel.blade.php │ │ │ ├── index.blade.php │ │ │ └── livewire │ │ │ ├── export.blade.php │ │ │ ├── student-chart.blade.php │ │ │ └── student-filter.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js ├── Setting │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Constants │ │ ├── EncryptionConstant.php │ │ ├── RoleModuleConstant.php │ │ └── UserConstant.php │ ├── Database │ │ ├── Factories │ │ │ └── .gitkeep │ │ ├── Migrations │ │ │ └── .gitkeep │ │ └── Seeders │ │ │ ├── .gitkeep │ │ │ └── SettingDatabaseSeeder.php │ ├── Datatables │ │ ├── LogDatatable.php │ │ └── OperatorDatatable.php │ ├── Entities │ │ ├── .gitkeep │ │ └── Setting.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── LogController.php │ │ │ └── SettingController.php │ │ ├── Livewire │ │ │ ├── General.php │ │ │ ├── RoleForm.php │ │ │ └── RoleTable.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── .gitkeep │ │ │ ├── SettingRequest.php │ │ │ └── UserRequest.php │ ├── Observer │ │ └── InstallObserver.php │ ├── Providers │ │ ├── .gitkeep │ │ ├── ComposerServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── LivewireServiceProvider.php │ │ ├── RepositoryServiceProvider.php │ │ ├── RouteServiceProvider.php │ │ └── SettingServiceProvider.php │ ├── Repository │ │ ├── Eloquent │ │ │ ├── InstallEloquent.php │ │ │ └── SettingEloquent.php │ │ ├── InstallRepository.php │ │ └── SettingRepository.php │ ├── Resources │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── js │ │ │ │ └── app.js │ │ │ └── sass │ │ │ │ └── app.scss │ │ ├── lang │ │ │ └── .gitkeep │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── activity │ │ │ └── index.blade.php │ │ │ ├── general │ │ │ ├── index.blade.php │ │ │ └── livewire │ │ │ │ └── index.blade.php │ │ │ ├── index.blade.php │ │ │ └── role │ │ │ ├── livewire │ │ │ ├── form.blade.php │ │ │ └── table.blade.php │ │ │ ├── operator-action.blade.php │ │ │ ├── operator-component.blade.php │ │ │ ├── operator.blade.php │ │ │ └── role-permission.blade.php │ ├── Routes │ │ ├── .gitkeep │ │ ├── api.php │ │ └── web.php │ ├── Tests │ │ ├── Feature │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── View │ │ └── Composer │ │ │ └── SettingComposer.php │ ├── composer.json │ ├── module.json │ ├── package.json │ └── webpack.mix.js └── Utils │ ├── Helper.php │ ├── Month.php │ ├── Paginate.php │ ├── Semester.php │ └── Uuid.php ├── README.md ├── app ├── Console │ ├── Commands │ │ └── CreateDatabase.php │ └── Kernel.php ├── Constants │ ├── Constants.php │ ├── DefaultRole.php │ └── SchoolLevel.php ├── Datatables │ ├── Column.php │ ├── TableComponent.php │ └── Traits │ │ ├── Checkbox.php │ │ ├── DocumentImport.php │ │ ├── DocumentListeners.php │ │ ├── HtmlComponents.php │ │ ├── Notify.php │ │ ├── Options.php │ │ ├── Pagination.php │ │ ├── Search.php │ │ ├── Sorting.php │ │ ├── Table.php │ │ ├── UploadFileImport.php │ │ └── Yajra.php ├── Entities │ ├── Activity.php │ ├── Permission.php │ └── Role.php ├── Events │ ├── DocumentConvertedToXlsx.php │ ├── DocumentCreated.php │ └── DocumentImportedComplete.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ └── LogoutController.php │ │ ├── Controller.php │ │ └── NotificationController.php │ ├── Kernel.php │ ├── Livewire │ │ └── Auth │ │ │ ├── Install.php │ │ │ └── Login.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── Installed.php │ │ ├── NotInstalled.php │ │ ├── PreventBackHistory.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Imports │ └── Traits │ │ └── DocumentEventHandler.php ├── Jobs │ ├── DocumentConverterJob.php │ └── DocumentImporterJob.php ├── Listeners │ └── CreateImportBatch.php ├── Notifications │ ├── ImportFailedNotification.php │ └── ImportSuccessNotification.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── LivewireServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ └── XlsxConverter.php └── View │ └── Components │ ├── Apex │ ├── BarChart.php │ ├── ColumnChart.php │ └── LineChart.php │ ├── CardIcon.php │ ├── Inputs │ ├── Number.php │ ├── SelectConstant.php │ ├── SelectTwo.php │ └── Textarea.php │ ├── Modals │ ├── Import.php │ ├── Modal.php │ └── ModalRight.php │ ├── Percentage.php │ ├── Progress.php │ └── Widget.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── excel.php ├── filesystems.php ├── format.php ├── hashing.php ├── livewire.php ├── logging.php ├── mail.php ├── modules.php ├── permission.php ├── queue.php ├── services.php ├── session.php ├── tcpdf.php └── view.php ├── database ├── .gitignore ├── migrations │ ├── 2021_03_25_024919_create_permission_tables.php │ ├── 2021_04_21_144506_create_jobs_table.php │ ├── 2021_05_29_074647_create_notifications_table.php │ ├── 2021_06_02_072022_create_job_batches_table.php │ └── 2021_06_20_172020_create_activities_table.php └── seeders │ ├── DatabaseSeeder.php │ ├── RolePermissionTableSeeder.php │ └── UserTableSeeder.php ├── docs └── images │ ├── report.png │ ├── setup.png │ └── transaction.png ├── modules_statuses.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── README.md │ ├── app.css │ ├── fonts │ │ ├── nunito-v9-latin-600.eot │ │ ├── nunito-v9-latin-600.svg │ │ ├── nunito-v9-latin-600.ttf │ │ ├── nunito-v9-latin-600.woff │ │ ├── nunito-v9-latin-600.woff2 │ │ ├── nunito-v9-latin-700.eot │ │ ├── nunito-v9-latin-700.svg │ │ ├── nunito-v9-latin-700.ttf │ │ ├── nunito-v9-latin-700.woff │ │ ├── nunito-v9-latin-700.woff2 │ │ ├── nunito-v9-latin-800.eot │ │ ├── nunito-v9-latin-800.svg │ │ ├── nunito-v9-latin-800.ttf │ │ ├── nunito-v9-latin-800.woff │ │ ├── nunito-v9-latin-800.woff2 │ │ ├── nunito-v9-latin-regular.eot │ │ ├── nunito-v9-latin-regular.svg │ │ ├── nunito-v9-latin-regular.ttf │ │ ├── nunito-v9-latin-regular.woff │ │ ├── nunito-v9-latin-regular.woff2 │ │ ├── summernote │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ └── vazir │ │ │ ├── Farsi-Digits-Without-Latin │ │ │ ├── Vazir-Black-FD-WOL.eot │ │ │ ├── Vazir-Black-FD-WOL.ttf │ │ │ ├── Vazir-Black-FD-WOL.woff │ │ │ ├── Vazir-Black-FD-WOL.woff2 │ │ │ ├── Vazir-Bold-FD-WOL.eot │ │ │ ├── Vazir-Bold-FD-WOL.ttf │ │ │ ├── Vazir-Bold-FD-WOL.woff │ │ │ ├── Vazir-Bold-FD-WOL.woff2 │ │ │ ├── Vazir-FD-WOL.eot │ │ │ ├── Vazir-FD-WOL.ttf │ │ │ ├── Vazir-FD-WOL.woff │ │ │ ├── Vazir-FD-WOL.woff2 │ │ │ ├── Vazir-Light-FD-WOL.eot │ │ │ ├── Vazir-Light-FD-WOL.ttf │ │ │ ├── Vazir-Light-FD-WOL.woff │ │ │ ├── Vazir-Light-FD-WOL.woff2 │ │ │ ├── Vazir-Medium-FD-WOL.eot │ │ │ ├── Vazir-Medium-FD-WOL.ttf │ │ │ ├── Vazir-Medium-FD-WOL.woff │ │ │ ├── Vazir-Medium-FD-WOL.woff2 │ │ │ ├── Vazir-Thin-FD-WOL.eot │ │ │ ├── Vazir-Thin-FD-WOL.ttf │ │ │ ├── Vazir-Thin-FD-WOL.woff │ │ │ └── Vazir-Thin-FD-WOL.woff2 │ │ │ ├── Farsi-Digits │ │ │ ├── Vazir-Black-FD.eot │ │ │ ├── Vazir-Black-FD.ttf │ │ │ ├── Vazir-Black-FD.woff │ │ │ ├── Vazir-Black-FD.woff2 │ │ │ ├── Vazir-Bold-FD.eot │ │ │ ├── Vazir-Bold-FD.ttf │ │ │ ├── Vazir-Bold-FD.woff │ │ │ ├── Vazir-Bold-FD.woff2 │ │ │ ├── Vazir-FD.eot │ │ │ ├── Vazir-FD.ttf │ │ │ ├── Vazir-FD.woff │ │ │ ├── Vazir-FD.woff2 │ │ │ ├── Vazir-Light-FD.eot │ │ │ ├── Vazir-Light-FD.ttf │ │ │ ├── Vazir-Light-FD.woff │ │ │ ├── Vazir-Light-FD.woff2 │ │ │ ├── Vazir-Medium-FD.eot │ │ │ ├── Vazir-Medium-FD.ttf │ │ │ ├── Vazir-Medium-FD.woff │ │ │ ├── Vazir-Medium-FD.woff2 │ │ │ ├── Vazir-Thin-FD.eot │ │ │ ├── Vazir-Thin-FD.ttf │ │ │ ├── Vazir-Thin-FD.woff │ │ │ └── Vazir-Thin-FD.woff2 │ │ │ ├── LICENSE │ │ │ ├── Vazir-Black.eot │ │ │ ├── Vazir-Black.ttf │ │ │ ├── Vazir-Black.woff │ │ │ ├── Vazir-Black.woff2 │ │ │ ├── Vazir-Bold.eot │ │ │ ├── Vazir-Bold.ttf │ │ │ ├── Vazir-Bold.woff │ │ │ ├── Vazir-Bold.woff2 │ │ │ ├── Vazir-Light.eot │ │ │ ├── Vazir-Light.ttf │ │ │ ├── Vazir-Light.woff │ │ │ ├── Vazir-Light.woff2 │ │ │ ├── Vazir-Medium.eot │ │ │ ├── Vazir-Medium.ttf │ │ │ ├── Vazir-Medium.woff │ │ │ ├── Vazir-Medium.woff2 │ │ │ ├── Vazir-Thin.eot │ │ │ ├── Vazir-Thin.ttf │ │ │ ├── Vazir-Thin.woff │ │ │ ├── Vazir-Thin.woff2 │ │ │ ├── Vazir.eot │ │ │ ├── Vazir.ttf │ │ │ ├── Vazir.woff │ │ │ ├── Vazir.woff2 │ │ │ ├── Without-Latin │ │ │ ├── Vazir-Black-WOL.eot │ │ │ ├── Vazir-Black-WOL.ttf │ │ │ ├── Vazir-Black-WOL.woff │ │ │ ├── Vazir-Black-WOL.woff2 │ │ │ ├── Vazir-Bold-WOL.eot │ │ │ ├── Vazir-Bold-WOL.ttf │ │ │ ├── Vazir-Bold-WOL.woff │ │ │ ├── Vazir-Bold-WOL.woff2 │ │ │ ├── Vazir-Light-WOL.eot │ │ │ ├── Vazir-Light-WOL.ttf │ │ │ ├── Vazir-Light-WOL.woff │ │ │ ├── Vazir-Light-WOL.woff2 │ │ │ ├── Vazir-Medium-WOL.eot │ │ │ ├── Vazir-Medium-WOL.ttf │ │ │ ├── Vazir-Medium-WOL.woff │ │ │ ├── Vazir-Medium-WOL.woff2 │ │ │ ├── Vazir-Thin-WOL.eot │ │ │ ├── Vazir-Thin-WOL.ttf │ │ │ ├── Vazir-Thin-WOL.woff │ │ │ ├── Vazir-Thin-WOL.woff2 │ │ │ ├── Vazir-WOL.eot │ │ │ ├── Vazir-WOL.ttf │ │ │ ├── Vazir-WOL.woff │ │ │ └── Vazir-WOL.woff2 │ │ │ ├── font-face.css │ │ │ └── sample.png │ ├── icons │ │ ├── align-center.svg │ │ ├── align-indent.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-outdent.svg │ │ ├── align-right.svg │ │ ├── align.svg │ │ ├── arrow-circle-down.svg │ │ ├── arrow-circle-left.svg │ │ ├── arrow-circle-right.svg │ │ ├── arrow-circle-up.svg │ │ ├── arrows-alt.svg │ │ ├── arrows-h.svg │ │ ├── arrows-v.svg │ │ ├── bold.svg │ │ ├── caret.svg │ │ ├── chain-broken.svg │ │ ├── circle.svg │ │ ├── close.svg │ │ ├── code.svg │ │ ├── col-after.svg │ │ ├── col-before.svg │ │ ├── col-remove.svg │ │ ├── eraser.svg │ │ ├── font.svg │ │ ├── frame.svg │ │ ├── italic.svg │ │ ├── link.svg │ │ ├── magic.svg │ │ ├── menu-check.svg │ │ ├── minus.svg │ │ ├── orderedlist.svg │ │ ├── pencil.svg │ │ ├── picture.svg │ │ ├── question.svg │ │ ├── redo.svg │ │ ├── row-above.svg │ │ ├── row-below.svg │ │ ├── row-remove.svg │ │ ├── special-character.svg │ │ ├── square.svg │ │ ├── strikethrough.svg │ │ ├── subscript.svg │ │ ├── summernote.svg │ │ ├── superscript.svg │ │ ├── table.svg │ │ ├── templates │ │ │ ├── summernote.css │ │ │ └── summernote.json │ │ ├── text-height.svg │ │ ├── trash.svg │ │ ├── underline.svg │ │ ├── undo.svg │ │ ├── unorderedlist.svg │ │ └── video.svg │ ├── img │ │ ├── empty.png │ │ ├── stisla-fill.svg │ │ ├── stisla-light.svg │ │ ├── stisla-transparent.svg │ │ └── stisla.svg │ └── template.css ├── favicon.ico ├── fonts │ └── vendor │ │ └── @fortawesome │ │ └── fontawesome-free │ │ ├── webfa-brands-400.eot │ │ ├── webfa-brands-400.svg │ │ ├── webfa-brands-400.ttf │ │ ├── webfa-brands-400.woff │ │ ├── webfa-brands-400.woff2 │ │ ├── webfa-regular-400.eot │ │ ├── webfa-regular-400.svg │ │ ├── webfa-regular-400.ttf │ │ ├── webfa-regular-400.woff │ │ ├── webfa-regular-400.woff2 │ │ ├── webfa-solid-900.eot │ │ ├── webfa-solid-900.svg │ │ ├── webfa-solid-900.ttf │ │ ├── webfa-solid-900.woff │ │ └── webfa-solid-900.woff2 ├── format │ ├── format-kelas.ods │ ├── format-siswa.ods │ ├── format-tagihan.ods │ └── format-tahun-ajaran.ods ├── index.php ├── js │ ├── app.js │ └── echocompiled.js ├── mix-manifest.json ├── robots.txt ├── web.config └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── resources ├── css │ ├── components.css │ ├── style.css │ └── summernote.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── scripts.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── install.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── id │ │ ├── passwords.php │ │ └── validation.php ├── sass │ └── app.scss └── views │ ├── components │ ├── apex │ │ ├── bar-chart.blade.php │ │ ├── column-chart.blade.php │ │ └── line-chart.blade.php │ ├── card-icon.blade.php │ ├── inputs │ │ ├── email.blade.php │ │ ├── number.blade.php │ │ ├── password.blade.php │ │ ├── select-constant.blade.php │ │ ├── select-two.blade.php │ │ ├── select.blade.php │ │ ├── text.blade.php │ │ └── textarea.blade.php │ ├── logo.blade.php │ ├── modals │ │ ├── import.blade.php │ │ ├── modal-right.blade.php │ │ └── modal.blade.php │ ├── payments │ │ ├── table-monthly.blade.php │ │ └── table-not-monthly.blade.php │ ├── percentage.blade.php │ ├── progress.blade.php │ └── widget.blade.php │ ├── datatables │ ├── includes │ │ ├── checkbox-all.blade.php │ │ ├── checkbox-row.blade.php │ │ ├── columns.blade.php │ │ ├── data.blade.php │ │ ├── empty.blade.php │ │ └── thead.blade.php │ └── table-component.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ ├── auth.blade.php │ ├── includes │ │ ├── footer.blade.php │ │ ├── navbar.blade.php │ │ ├── pdf │ │ │ ├── cop.blade.php │ │ │ ├── style.blade.php │ │ │ └── ttd.blade.php │ │ ├── scripts.blade.php │ │ ├── sidebar.blade.php │ │ └── styles.blade.php │ └── pdf.blade.php │ ├── livewire │ └── auth │ │ ├── install.blade.php │ │ └── login.blade.php │ ├── notifications.blade.php │ └── vendor │ ├── livewire │ ├── bootstrap.blade.php │ ├── pagination-links.blade.php │ ├── simple-bootstrap.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── text │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ └── notifications │ └── email.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── laravel-excel │ │ ├── laravel-excel-0MP6uJUPYVwDW7DmsQdv4Uzwi3GpSPto.xlsx │ │ ├── laravel-excel-0rgWVcoLpdvnOPe4v8Xsn8qRVgBW45Ow.xlsx │ │ ├── laravel-excel-13Tc1nI7dUoL23Jo0a6QnG0SR6u6YtqL.html │ │ ├── laravel-excel-1IJmr77R4ja6nEr0TvsBnAm1dHENg9fp.html │ │ ├── laravel-excel-5nIdZyvADTEFnDPHQLc2UrbHwSGHntJO.xlsx │ │ ├── laravel-excel-6APnhPin9onBk2wHWznvuXecUJhNZBrd.xlsx │ │ ├── laravel-excel-74JlQHkhM0XsUS63kTSywae0mrywPACY.xlsx │ │ ├── laravel-excel-A1LClecQbRage71Ea4VJkWU3SSCrs36K.xlsx │ │ ├── laravel-excel-DZiVuTSZh95w6rNejxuyeC18ycZyBntI.xlsx │ │ ├── laravel-excel-EXUzD5QJkTwezpH84F0aGzkgHThMNQuF.xlsx │ │ ├── laravel-excel-WDaQhhivr6wpEmakQ9d6loMWGdtutn4O.xlsx │ │ ├── laravel-excel-ap1bW9RIjylgoTtMgM2EST1TlzKkULzU.xlsx │ │ ├── laravel-excel-i7iLkQRachKSaf0vqI9HOqEFgNWHmJ4Y.xlsx │ │ ├── laravel-excel-wvSNBhg2lzNMG9fkXe7sATaG3F5Yj3hU.xlsx │ │ └── laravel-excel-x0AsN8vDkgfNAeBhBYaIbnGAJDx8MVlK.xlsx │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── Auth │ │ ├── InstallTest.php │ │ └── LoginTest.php ├── TestCase.php └── Unit │ └── HelpersTest.php ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /.env.testing: -------------------------------------------------------------------------------- 1 | APP_NAME=SAAS 2 | APP_ENV=local 3 | APP_KEY=base64:pUltS2yqqvdHnIq6GM4ReDTUW56A6XvzPwukMhFqoeY= 4 | APP_DEBUG=true 5 | APP_URL=http://saas-schools.wip 6 | 7 | LOG_CHANNEL=stack 8 | LOG_LEVEL=debug 9 | FILESYSTEM_DRIVER=public 10 | 11 | DB_CONNECTION=mysql 12 | DB_HOST=127.0.0.1 13 | DB_PORT=3306 14 | DB_DATABASE=spp_test 15 | DB_USERNAME=root 16 | DB_PASSWORD=root 17 | 18 | CACHE_DRIVER=file 19 | SESSION_DRIVER=file 20 | SESSION_LIFETIME=120 21 | 22 | MEMCACHED_HOST=127.0.0.1 23 | 24 | REDIS_HOST=127.0.0.1 25 | REDIS_PASSWORD=null 26 | REDIS_PORT=6379 27 | 28 | AWS_ACCESS_KEY_ID= 29 | AWS_SECRET_ACCESS_KEY= 30 | AWS_DEFAULT_REGION=us-east-1 31 | AWS_BUCKET= 32 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://trakteer.id/rizkhal", "https://www.buymeacoffee.com/rizkhal"] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | docker-compose.override.yml 10 | Homestead.json 11 | Homestead.yaml 12 | npm-debug.log 13 | yarn-error.log 14 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | scripts-prepend-node-path=true -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - no_unused_imports 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/CONTRIBUTING.md -------------------------------------------------------------------------------- /Modules/Dashboard/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Dashboard' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Dashboard/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Database/Seeders/DashboardDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Dashboard/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Providers/LivewireServiceProvider.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

Statistik Pemasukan & Pengeluaran Tahun {{ date('Y') }}

5 |
6 |
7 | 12 |
13 |
14 | 15 | -------------------------------------------------------------------------------- /Modules/Dashboard/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/dashboard', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Dashboard/Routes/web.php: -------------------------------------------------------------------------------- 1 | group(function () { 7 | Route::get('dashboard', DashboardController::class)->name('dashboard'); 8 | }); 9 | -------------------------------------------------------------------------------- /Modules/Dashboard/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Dashboard/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Dashboard/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/dashboard", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Dashboard\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Dashboard/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dashboard", 3 | "alias": "dashboard", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Dashboard\\Providers\\DashboardServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Dashboard/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/dashboard.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/dashboard.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Document/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Document' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Document/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Database/Seeders/DocumentDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Document/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Http/Controllers/DocumentController.php: -------------------------------------------------------------------------------- 1 | 'Kelola Dokumen' 19 | ]); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Document/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Providers/LivewireServiceProvider.php: -------------------------------------------------------------------------------- 1 | id }}")' type="button" class="btn btn-info"> 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /Modules/Document/Resources/views/component.blade.php: -------------------------------------------------------------------------------- 1 | @push('scripts') 2 | 17 | @endpush 18 | -------------------------------------------------------------------------------- /Modules/Document/Resources/views/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

{{ $title }}

5 |
6 | 7 | 8 |
9 |
10 |
11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /Modules/Document/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/document', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Document/Routes/web.php: -------------------------------------------------------------------------------- 1 | prefix('document')->as('document.')->group(function () { 8 | Route::get('/', [DocumentController::class, 'index'])->name('index'); 9 | }); 10 | -------------------------------------------------------------------------------- /Modules/Document/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Document/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Document/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/document", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Document\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Document/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Document", 3 | "alias": "document", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Document\\Providers\\DocumentServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Document/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/document.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/document.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Master/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Master' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Master/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Constants/ReligionConstant.php: -------------------------------------------------------------------------------- 1 | 'Islam', 19 | self::KATOLIK => 'Katolik', 20 | self::PROTESTAN => 'Protestan', 21 | self::HINDU => 'Hindu', 22 | self::BUDHA => 'Budha', 23 | ]; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Modules/Master/Constants/SchoolLevelConstant.php: -------------------------------------------------------------------------------- 1 | 'Sekolah Dasar', 17 | self::SMP => 'Sekolah Menengah Pertama', 18 | self::SMA => 'Sekolah Menengah Atas', 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Master/Constants/SexConstant.php: -------------------------------------------------------------------------------- 1 | 'Pria', 17 | static::WOMAN => 'Wanita', 18 | static::UNKNOWN => 'Lainnya', 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Master/Constants/StudentConstant.php: -------------------------------------------------------------------------------- 1 | 'Aktif', 18 | static::GRADUATE => 'Lulus', 19 | static::MOVE => 'Pindah', 20 | static::QUIT => 'Berhenti', 21 | ]; 22 | } 23 | 24 | public static function types(): array 25 | { 26 | return [ 27 | static::ACTIVE => 'success', 28 | static::GRADUATE => 'info', 29 | static::MOVE => 'primary', 30 | static::QUIT => 'danger', 31 | ]; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Modules/Master/Database/Factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Database/Factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Database/Factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->uuid(), 26 | 'name' => $this->faker->firstName(), 27 | 'email' => $this->faker->unique()->email, 28 | 'password' => Str::random(8) 29 | ]; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Modules/Master/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Database/Seeders/MasterDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | 'Daftar Tagihan', 20 | 'years' => SchoolYear::query()->select(['id', 'year'])->get(), 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Master/Http/Controllers/Json/RoomJsonController.php: -------------------------------------------------------------------------------- 1 | room = $room; 17 | } 18 | 19 | public function all(): JsonResponse 20 | { 21 | return response()->json(['data' => $this->room->all()], 200); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Master/Http/Controllers/MajorController.php: -------------------------------------------------------------------------------- 1 | 'Kelola Jurusan']); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Modules/Master/Http/Controllers/RoomController.php: -------------------------------------------------------------------------------- 1 | 'Daftar Kelas']); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Master/Http/Controllers/SchoolYearController.php: -------------------------------------------------------------------------------- 1 | 'Daftar Tahun Ajaran']); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Modules/Master/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/bill/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

{{ $title }}

5 |
6 | 7 | 8 |
9 |
10 |
11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/room/action.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 5 | 8 |
9 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/room/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

{{ $title }}

5 |
6 | 7 | 8 |
9 |
10 |
11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/school-year/action.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 5 | 8 |
9 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/school-year/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

{{ $title }}

5 |
6 | 7 | 8 |
9 |
10 |
11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/student/action.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/student/card-header-form.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /Modules/Master/Resources/views/student/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

{{ $title }}

5 |
6 | 7 | 8 |
9 |
10 |
11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /Modules/Master/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Master/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Master/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/master", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Master\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Master/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Master", 3 | "alias": "master", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Master\\Providers\\MasterServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Master/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/master.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/master.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Payment/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Payment' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Payment/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Constants/PaymentStatus.php: -------------------------------------------------------------------------------- 1 | 'Lunas', 16 | self::TUNGGAK => 'Tunggak', 17 | ]; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Modules/Payment/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Database/Seeders/PaymentDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Payment/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Http/Controllers/SpendingController.php: -------------------------------------------------------------------------------- 1 | 'Pengeluaran', 20 | 'bills' => $bill->all()->get()->toArray(), 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Payment/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Observer/PaymentObserver.php: -------------------------------------------------------------------------------- 1 | fill([ 13 | 'created_by' => Auth::id(), 14 | ]); 15 | } 16 | 17 | public function updating(Payment $model) 18 | { 19 | $model->fill([ 20 | 'updated_by' => Auth::id(), 21 | ]); 22 | } 23 | 24 | public function deleting(Payment $model) 25 | { 26 | $model->update([ 27 | 'deleted_by' => Auth::id(), 28 | ]); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Modules/Payment/Observer/SpendingObserver.php: -------------------------------------------------------------------------------- 1 | fill([ 13 | 'created_by' => Auth::id(), 14 | ]); 15 | } 16 | 17 | public function updating(Spending $model) 18 | { 19 | $model->fill([ 20 | 'updated_by' => Auth::id(), 21 | ]); 22 | } 23 | 24 | public function deleting(Spending $model) 25 | { 26 | $model->update([ 27 | 'deleted_by' => Auth::id(), 28 | ]); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Modules/Payment/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | app->bind( 17 | \Modules\Payment\Repository\PaymentRepository::class, 18 | \Modules\Payment\Repository\Eloquent\PaymentEloquent::class 19 | ); 20 | 21 | $this->app->bind( 22 | \Modules\Payment\Repository\SpendingRepository::class, 23 | \Modules\Payment\Repository\Eloquent\SpendingEloquent::class 24 | ); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Modules/Payment/Repository/PaymentRepository.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

{{ $title }}

5 |
6 | 7 | 8 |
9 |
10 |
11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /Modules/Payment/Resources/views/spending/action.blade.php: -------------------------------------------------------------------------------- 1 | 4 | 7 | -------------------------------------------------------------------------------- /Modules/Payment/Resources/views/spending/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

{{ $title }}

5 |
6 | 7 | 8 |
9 |
10 |
11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /Modules/Payment/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/payment', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Payment/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Payment/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Payment/Utils/Trx.php: -------------------------------------------------------------------------------- 1 | whereDate('created_at', $date)->get(); 17 | 18 | return 'TRX-' . $date . '-' . sprintf('%06s', $result->count() + 1); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Modules/Payment/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/payment", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Payment\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Payment/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Payment", 3 | "alias": "payment", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Payment\\Providers\\PaymentServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Payment/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/payment.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/payment.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Report/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Report' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Report/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Database/Seeders/ReportDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Report/Database/factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Database/factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Providers/LivewireServiceProvider.php: -------------------------------------------------------------------------------- 1 | app->bind( 17 | \Modules\Report\Repository\IncomeRepository::class, 18 | \Modules\Report\Repository\Eloquent\IncomeEloquent::class 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Report/Resources/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Resources/assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Resources/assets/js/app.js -------------------------------------------------------------------------------- /Modules/Report/Resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Modules/Report/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Resources/views/student/livewire/student-chart.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

Statistik Siswa Tahun {{ date('Y') }}

5 |
6 |
7 | 12 |
13 |
14 |
-------------------------------------------------------------------------------- /Modules/Report/Resources/views/student/livewire/student-filter.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

Lihat Tagihan Berdasarkan Siswa

5 |
6 |
7 | {{-- --}} 8 |
9 |
10 |
-------------------------------------------------------------------------------- /Modules/Report/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Routes/api.php: -------------------------------------------------------------------------------- 1 | get('/report', function (Request $request) { 17 | return $request->user(); 18 | }); -------------------------------------------------------------------------------- /Modules/Report/Routes/web.php: -------------------------------------------------------------------------------- 1 | as('report.')->middleware(['auth', 'verified', 'installed'])->group(function () { 7 | Route::get('/', [ReportController::class, 'index'])->name('index'); 8 | Route::get('/student', [ReportController::class, 'student'])->name('student'); 9 | Route::get('/finance', [ReportController::class, 'finance'])->name('finance'); 10 | }); 11 | -------------------------------------------------------------------------------- /Modules/Report/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Report/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Report/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/report", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Report\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Report/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Report", 3 | "alias": "report", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Report\\Providers\\ReportServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Report/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/report.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/report.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Setting/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Setting' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Setting/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Constants/EncryptionConstant.php: -------------------------------------------------------------------------------- 1 | 'tls', 16 | self::SSL => 'ssl', 17 | ]; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Modules/Setting/Constants/RoleModuleConstant.php: -------------------------------------------------------------------------------- 1 | 'Semua', 13 | 'master' => 'Data Master', 14 | 'payment' => 'Keuangan', 15 | 'report' => 'Laporan', 16 | 'setting' => 'Pengaturan' 17 | ]; 18 | } 19 | } -------------------------------------------------------------------------------- /Modules/Setting/Constants/UserConstant.php: -------------------------------------------------------------------------------- 1 | 'Aktif', 16 | self::SUSPEND => 'Suspend', 17 | ]; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Modules/Setting/Database/Factories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Database/Factories/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Database/Seeders/SettingDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Setting/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Entities/Setting.php: -------------------------------------------------------------------------------- 1 | 'Kelola Log Aktifitas' 15 | ]); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Modules/Setting/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Observer/InstallObserver.php: -------------------------------------------------------------------------------- 1 | fill([ 13 | 'created_by' => Auth::id(), 14 | ]); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Modules/Setting/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Providers/ComposerServiceProvider.php: -------------------------------------------------------------------------------- 1 | app->bind( 17 | \Modules\Setting\Repository\InstallRepository::class, 18 | \Modules\Setting\Repository\Eloquent\InstallEloquent::class 19 | ); 20 | 21 | $this->app->bind( 22 | \Modules\Setting\Repository\SettingRepository::class, 23 | \Modules\Setting\Repository\Eloquent\SettingEloquent::class 24 | ); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Modules/Setting/Repository/InstallRepository.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 |
7 |

{{ $title }}

8 |
9 | 10 | 11 |
12 |
13 | 14 | @livewire('log-datatable') 15 |
16 | 17 | -------------------------------------------------------------------------------- /Modules/Setting/Resources/views/role/operator-action.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 5 | 8 |
9 | -------------------------------------------------------------------------------- /Modules/Setting/Routes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Routes/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Routes/api.php: -------------------------------------------------------------------------------- 1 | pusherConfiguration()) { 8 | return response()->json([ 9 | 'success' => true, 10 | 'data' => $setting->pusherConfiguration(), 11 | ], 200); 12 | } 13 | 14 | return response()->json([ 15 | 'success' => true, 16 | 'data' => null, 17 | ], 200); 18 | }); 19 | -------------------------------------------------------------------------------- /Modules/Setting/Tests/Feature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Tests/Feature/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/Modules/Setting/Tests/Unit/.gitkeep -------------------------------------------------------------------------------- /Modules/Setting/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/setting", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "extra": { 11 | "laravel": { 12 | "providers": [], 13 | "aliases": { 14 | 15 | } 16 | } 17 | }, 18 | "autoload": { 19 | "psr-4": { 20 | "Modules\\Setting\\": "" 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Modules/Setting/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Setting", 3 | "alias": "setting", 4 | "description": "", 5 | "keywords": [], 6 | "priority": 0, 7 | "providers": [ 8 | "Modules\\Setting\\Providers\\SettingServiceProvider" 9 | ], 10 | "aliases": {}, 11 | "files": [], 12 | "requires": [] 13 | } 14 | -------------------------------------------------------------------------------- /Modules/Setting/webpack.mix.js: -------------------------------------------------------------------------------- 1 | const dotenvExpand = require('dotenv-expand'); 2 | dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/})); 3 | 4 | const mix = require('laravel-mix'); 5 | require('laravel-mix-merge-manifest'); 6 | 7 | mix.setPublicPath('../../public').mergeManifest(); 8 | 9 | mix.js(__dirname + '/Resources/assets/js/app.js', 'js/setting.js') 10 | .sass( __dirname + '/Resources/assets/sass/app.scss', 'css/setting.css'); 11 | 12 | if (mix.inProduction()) { 13 | mix.version(); 14 | } 15 | -------------------------------------------------------------------------------- /Modules/Utils/Month.php: -------------------------------------------------------------------------------- 1 | {$model->getKeyName()})) { 17 | $model->{$model->getKeyName()} = Str::uuid()->toString(); 18 | } 19 | }); 20 | } 21 | 22 | public function getIncrementing() 23 | { 24 | return false; 25 | } 26 | 27 | public function getKeyType() 28 | { 29 | return 'string'; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Constants/DefaultRole.php: -------------------------------------------------------------------------------- 1 | 'Sekolah Dasar', 17 | self::SMP => 'Sekolah Menengah Pertama', 18 | self::SMA => 'Sekolah Menengah Atas', 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Datatables/Traits/DocumentListeners.php: -------------------------------------------------------------------------------- 1 | id; 12 | 13 | return [ 14 | "echo-private:notifications.{$userId},DocumentImportedComplete" => '$refresh', 15 | ]; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/Datatables/Traits/Options.php: -------------------------------------------------------------------------------- 1 | 'Semua notifikasi', 13 | ]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | route('dashboard'); 22 | } 23 | return $next($request); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventBackHistory.php: -------------------------------------------------------------------------------- 1 | header('Cache-Control', 'nocache,no-store,max-age=0;must-revalidate') 20 | ->header('Pragma', 'no-cache') 21 | ->header('Expires', 'Sun, 02 Jan 1990 00:00:00 GMT'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | getDocument(); 23 | 24 | Bus::batch([ 25 | new DocumentConverterJob($document), 26 | new DocumentImporterJob($document), 27 | ])->dispatch(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | chartId = $chartId; 21 | $this->chartData = $chartData; 22 | $this->chartCategory = $chartCategory; 23 | $this->chartFill = $chartFill; 24 | } 25 | 26 | public function render() 27 | { 28 | return view('components.apex.bar-chart'); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/View/Components/Apex/ColumnChart.php: -------------------------------------------------------------------------------- 1 | chartId = $chartId; 19 | $this->chartData = $chartData; 20 | $this->chartCategory = $chartCategory; 21 | } 22 | 23 | public function render() 24 | { 25 | return view('components.apex.column-chart'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/View/Components/Apex/LineChart.php: -------------------------------------------------------------------------------- 1 | chartId = $chartId; 18 | $this->chartData = $chartData; 19 | $this->chartCategory = $chartCategory; 20 | } 21 | 22 | public function render() 23 | { 24 | return view('components.apex.line-chart'); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/View/Components/Modals/Import.php: -------------------------------------------------------------------------------- 1 | id = $id; 21 | $this->file = $file; 22 | $this->title = $title; 23 | } 24 | 25 | /** 26 | * Get the view / contents that represent the component. 27 | * 28 | * @return \Illuminate\Contracts\View\View|\Closure|string 29 | */ 30 | public function render() 31 | { 32 | return view('components.modals.import'); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/View/Components/Modals/Modal.php: -------------------------------------------------------------------------------- 1 | id = $id; 21 | $this->title = $title; 22 | } 23 | 24 | /** 25 | * Get the view / contents that represent the component. 26 | * 27 | * @return \Illuminate\Contracts\View\View|\Closure|string 28 | */ 29 | public function render() 30 | { 31 | return view('components.modals.modal'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/View/Components/Modals/ModalRight.php: -------------------------------------------------------------------------------- 1 | result = $result; 19 | } 20 | 21 | /** 22 | * Get the view / contents that represent the component. 23 | * 24 | * @return \Illuminate\Contracts\View\View|\Closure|string 25 | */ 26 | public function render() 27 | { 28 | return view('components.percentage'); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/View/Components/Progress.php: -------------------------------------------------------------------------------- 1 | id = $id; 20 | $this->max = $max; 21 | } 22 | 23 | /** 24 | * Get the view / contents that represent the component. 25 | * 26 | * @return \Illuminate\Contracts\View\View|\Closure|string 27 | */ 28 | public function render() 29 | { 30 | return view('components.progress'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /config/format.php: -------------------------------------------------------------------------------- 1 | public_path('format') 5 | ]; 6 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(RolePermissionTableSeeder::class); 17 | $this->call(UserTableSeeder::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /docs/images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/docs/images/report.png -------------------------------------------------------------------------------- /docs/images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/docs/images/setup.png -------------------------------------------------------------------------------- /docs/images/transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/docs/images/transaction.png -------------------------------------------------------------------------------- /modules_statuses.json: -------------------------------------------------------------------------------- 1 | { 2 | "Dashboard": true, 3 | "Master": true, 4 | "Payment": true, 5 | "Report": true, 6 | "Setting": true, 7 | "Document": true 8 | } -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/css/README.md: -------------------------------------------------------------------------------- 1 | Beberapa file dalam folder ini digenerate dari webpack -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-600.eot -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-600.ttf -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-600.woff -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-600.woff2 -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-700.eot -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-700.ttf -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-700.woff -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-700.woff2 -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-800.eot -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-800.ttf -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-800.woff -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-800.woff2 -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-regular.eot -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-regular.ttf -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-regular.woff -------------------------------------------------------------------------------- /public/css/fonts/nunito-v9-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/nunito-v9-latin-regular.woff2 -------------------------------------------------------------------------------- /public/css/fonts/summernote/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/summernote/summernote.eot -------------------------------------------------------------------------------- /public/css/fonts/summernote/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/summernote/summernote.ttf -------------------------------------------------------------------------------- /public/css/fonts/summernote/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/summernote/summernote.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Black-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Bold-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Light-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Medium-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits-Without-Latin/Vazir-Thin-FD-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Black-FD.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Bold-FD.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-FD.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-FD.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-FD.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-FD.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Light-FD.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Medium-FD.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Farsi-Digits/Vazir-Thin-FD.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Black.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Black.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Black.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Black.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Bold.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Bold.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Bold.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Bold.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Light.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Light.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Light.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Light.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Medium.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Medium.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Medium.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Medium.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Thin.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Thin.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Thin.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir-Thin.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Vazir.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Vazir.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Black-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Bold-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Light-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Medium-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-Thin-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-WOL.eot -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-WOL.ttf -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-WOL.woff -------------------------------------------------------------------------------- /public/css/fonts/vazir/Without-Latin/Vazir-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/Without-Latin/Vazir-WOL.woff2 -------------------------------------------------------------------------------- /public/css/fonts/vazir/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/fonts/vazir/sample.png -------------------------------------------------------------------------------- /public/css/icons/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/css/icons/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/css/icons/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/css/icons/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/css/icons/align.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /public/css/icons/arrow-circle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/icons/arrow-circle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/icons/arrow-circle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/icons/arrow-circle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/icons/arrows-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/css/icons/arrows-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/icons/arrows-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/icons/caret.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /public/css/icons/circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/css/icons/code.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/css/icons/magic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/css/icons/menu-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /public/css/icons/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public/css/icons/pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /public/css/icons/question.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/css/icons/redo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/css/icons/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/css/icons/templates/summernote.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseClass": "", 3 | "classPrefix": "note-icon-", 4 | "mixinPrefix": "note-icon-" 5 | } 6 | -------------------------------------------------------------------------------- /public/css/icons/undo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/css/icons/video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /public/css/img/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/css/img/empty.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2 -------------------------------------------------------------------------------- /public/format/format-kelas.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/format/format-kelas.ods -------------------------------------------------------------------------------- /public/format/format-siswa.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/format/format-siswa.ods -------------------------------------------------------------------------------- /public/format/format-tagihan.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/format/format-tagihan.ods -------------------------------------------------------------------------------- /public/format/format-tahun-ajaran.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/format/format-tahun-ajaran.ods -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/public/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | 3 | /** get from stisla */ 4 | require('./scripts'); -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'password' => 'The provided password is incorrect.', 18 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /resources/lang/en/install.php: -------------------------------------------------------------------------------- 1 | 'Setup Your Application' 5 | ]; -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 17 | 'sent' => 'We have emailed your password reset link!', 18 | 'throttled' => 'Please wait before retrying.', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that email address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/lang/id/passwords.php: -------------------------------------------------------------------------------- 1 | 'Password anda telah direset!', 17 | 'sent' => 'Kami telah mengirim email berisi tautan untuk mereset password!', 18 | 'throttled' => 'Harap tunggu beberapa menit.', 19 | 'token' => 'Token untuk mereset password tidak valid.', 20 | 'user' => "Email anda tidak terdaftar diserver kami.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | /** Bootstrap */ 2 | @import '~bootstrap/scss/bootstrap.scss'; 3 | 4 | /** Font awesome */ 5 | @import "~@fortawesome/fontawesome-free/scss/fontawesome.scss"; 6 | @import "~@fortawesome/fontawesome-free/scss/solid.scss"; 7 | @import "~@fortawesome/fontawesome-free/scss/regular.scss"; 8 | @import "~@fortawesome/fontawesome-free/scss/brands.scss"; 9 | 10 | /** Select2 */ 11 | @import "~select2/src/scss/core.scss"; 12 | 13 | /** IziToast */ 14 | @import "~izitoast/dist/css/iziToast.min.css"; 15 | 16 | /** Daterangepicker */ 17 | @import "~daterangepicker/daterangepicker.scss"; 18 | 19 | /** Summernote */ 20 | @import "~bs4-summernote/src/less/summernote.scss"; 21 | @import "~bs4-summernote/src/less/summernote-bs4.scss"; -------------------------------------------------------------------------------- /resources/views/components/card-icon.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
6 |

{{ $title }}

7 |

{{ $description }}

8 | 9 | {{ $linkText }} 10 | 11 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /resources/views/components/inputs/email.blade.php: -------------------------------------------------------------------------------- 1 | @props(['name', 'label', 'required' => null]) 2 | 3 | 10 | wire('model') }} id="{{ $name }}" type="email" 11 | class="form-control @error($name) is-invalid @enderror" name="{{ $name }}" value="{{ old($name) }}"> 12 | 13 | @error($name) 14 | {{ $message }} 15 | @enderror 16 | -------------------------------------------------------------------------------- /resources/views/components/inputs/number.blade.php: -------------------------------------------------------------------------------- 1 | 8 | wire('model') }} id="{{ $name }}" type="text" 9 | class="form-control number @error($name) is-invalid @enderror" name="{{ $name }}"> 10 | 11 | @error($name) 12 | {!! $message !!} 13 | @enderror 14 | -------------------------------------------------------------------------------- /resources/views/components/inputs/password.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'name', 3 | 'label', 4 | 'value' => null, 5 | 'required' => null 6 | ]) 7 | 8 | 15 | wire('model') }} id="{{ $name }}" type="password" 16 | class="form-control @error($name) is-invalid @enderror" name="{{ $name }}" value="{{ old($name, $value) }}"> 17 | 18 | @error($name) 19 | {{ $message }} 20 | @enderror 21 | -------------------------------------------------------------------------------- /resources/views/components/inputs/text.blade.php: -------------------------------------------------------------------------------- 1 | @props(['name', 'label', 'id' => null, 'class' => null, 'value' => null, 'required' => null]) 2 | 3 | 10 | wire('model') }} id="{{ $id ?? $name }}" type="text" 11 | class="{{ $class }} form-control @error($name) is-invalid @enderror" name="{{ $name }}" 12 | value="{{ old($name, $value) }}" {{ $attributes }}> 13 | 14 | @error($name) 15 | {{ $message }} 16 | @enderror 17 | -------------------------------------------------------------------------------- /resources/views/components/inputs/textarea.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 9 | 11 | 12 | @error($name) 13 | {{ $message }} 14 | @enderror 15 |
16 | -------------------------------------------------------------------------------- /resources/views/components/logo.blade.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/views/components/widget.blade.php: -------------------------------------------------------------------------------- 1 |
merge(['class' => 'card card-statistic-1']) }}> 2 |
3 | 4 |
5 |
6 |
7 |

{{ $title }}

8 |
9 |
10 | {{ $value }} 11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /resources/views/datatables/includes/checkbox-all.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/datatables/includes/checkbox-row.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/datatables/includes/empty.blade.php: -------------------------------------------------------------------------------- 1 | 2 | Hasil tidak ditemukan 3 | 4 | -------------------------------------------------------------------------------- /resources/views/datatables/includes/thead.blade.php: -------------------------------------------------------------------------------- 1 | @if ($tableHeaderEnabled) 2 | 3 | @include('datatable::includes.columns') 4 | 5 | @endif 6 | -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
{{ __('Dashboard') }}
9 | 10 |
11 | @if (session('status')) 12 | 15 | @endif 16 | 17 | {{ __('You are logged in!') }} 18 |
19 |
20 |
21 |
22 |
23 | @endsection 24 | -------------------------------------------------------------------------------- /resources/views/layouts/auth.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{ $title }} — Stisla 8 | 9 | 10 | 11 | {!! Livewire::styles() !!} 12 | @stack('styles') 13 | 14 | 15 | 16 | 17 | @yield('content') 18 | 19 | {!! Livewire::scripts() !!} 20 | @stack('scripts') 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /resources/views/layouts/includes/footer.blade.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /resources/views/layouts/includes/pdf/cop.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | logo") }}" class="logo" alt="Logo Sekolah"> 4 |
5 |
6 |

{{ $setting->name }}

7 |
8 |

9 | {{ $setting->address }} 10 |

11 |

Tlp: {{ $setting->phone }} Fax: {{ $setting->fax }} Email: {{ $setting->email }}

12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /resources/views/layouts/includes/scripts.blade.php: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /resources/views/layouts/pdf.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {{ $title ?? 'Document' }} 10 | @include('layouts.includes.pdf.style') 11 | @stack('styles') 12 | 13 | 14 | 15 | @includeWhen($cop ?? false, 'layouts.includes.pdf.cop') 16 | 17 | @yield('content') 18 | 19 | @includeWhen($ttd ?? false, 'layouts.includes.pdf.ttd') 20 | 21 | @stack('scripts') 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /resources/views/notifications.blade.php: -------------------------------------------------------------------------------- 1 | 2 | @push('styles') 3 | 14 | @endpush 15 | 16 |
17 |
18 |

{{ $title }}

19 |
20 | 21 |
22 |
23 | 24 | 25 |
26 |
27 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/button.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @if (trim($slot) === 'Laravel') 5 | 6 | @else 7 | {{ $slot }} 8 | @endif 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/message.blade.php: -------------------------------------------------------------------------------- 1 | @component('mail::layout') 2 | {{-- Header --}} 3 | @slot('header') 4 | @component('mail::header', ['url' => config('app.url')]) 5 | {{ config('app.name') }} 6 | @endcomponent 7 | @endslot 8 | 9 | {{-- Body --}} 10 | {{ $slot }} 11 | 12 | {{-- Subcopy --}} 13 | @isset($subcopy) 14 | @slot('subcopy') 15 | @component('mail::subcopy') 16 | {{ $subcopy }} 17 | @endcomponent 18 | @endslot 19 | @endisset 20 | 21 | {{-- Footer --}} 22 | @slot('footer') 23 | @component('mail::footer') 24 | © {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.') 25 | @endcomponent 26 | @endslot 27 | @endcomponent 28 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ Illuminate\Mail\Markdown::parse($slot) }} 3 |
4 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/layout.blade.php: -------------------------------------------------------------------------------- 1 | {!! strip_tags($header) !!} 2 | 3 | {!! strip_tags($slot) !!} 4 | @isset($subcopy) 5 | 6 | {!! strip_tags($subcopy) !!} 7 | @endisset 8 | 9 | {!! strip_tags($footer) !!} 10 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/message.blade.php: -------------------------------------------------------------------------------- 1 | @component('mail::layout') 2 | {{-- Header --}} 3 | @slot('header') 4 | @component('mail::header', ['url' => config('app.url')]) 5 | {{ config('app.name') }} 6 | @endcomponent 7 | @endslot 8 | 9 | {{-- Body --}} 10 | {{ $slot }} 11 | 12 | {{-- Subcopy --}} 13 | @isset($subcopy) 14 | @slot('subcopy') 15 | @component('mail::subcopy') 16 | {{ $subcopy }} 17 | @endcomponent 18 | @endslot 19 | @endisset 20 | 21 | {{-- Footer --}} 22 | @slot('footer') 23 | @component('mail::footer') 24 | © {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.') 25 | @endcomponent 26 | @endslot 27 | @endcomponent 28 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- 1 | group(function () { 10 | Route::get('install', Install::class)->name('install'); 11 | }); 12 | 13 | Route::middleware('guest')->group(function () { 14 | Route::get('/', Login::class); 15 | Route::get('login', Login::class)->name('login'); 16 | }); 17 | 18 | Route::middleware('auth')->group(function () { 19 | Route::post('logout', LogoutController::class)->name('logout'); 20 | }); 21 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 8 | }); 9 | 10 | Broadcast::channel('notifications.{channelUser}', function ($user, User $channelUser) { 11 | return (int) $user->id === (int) $channelUser->id; 12 | }); 13 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | group(function () { 7 | Route::get('notifications', NotificationController::class)->name('notifications'); 8 | }); -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-0MP6uJUPYVwDW7DmsQdv4Uzwi3GpSPto.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-0MP6uJUPYVwDW7DmsQdv4Uzwi3GpSPto.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-0rgWVcoLpdvnOPe4v8Xsn8qRVgBW45Ow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-0rgWVcoLpdvnOPe4v8Xsn8qRVgBW45Ow.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-13Tc1nI7dUoL23Jo0a6QnG0SR6u6YtqL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-13Tc1nI7dUoL23Jo0a6QnG0SR6u6YtqL.html -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-1IJmr77R4ja6nEr0TvsBnAm1dHENg9fp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-1IJmr77R4ja6nEr0TvsBnAm1dHENg9fp.html -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-5nIdZyvADTEFnDPHQLc2UrbHwSGHntJO.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-5nIdZyvADTEFnDPHQLc2UrbHwSGHntJO.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-6APnhPin9onBk2wHWznvuXecUJhNZBrd.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-6APnhPin9onBk2wHWznvuXecUJhNZBrd.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-74JlQHkhM0XsUS63kTSywae0mrywPACY.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-74JlQHkhM0XsUS63kTSywae0mrywPACY.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-A1LClecQbRage71Ea4VJkWU3SSCrs36K.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-A1LClecQbRage71Ea4VJkWU3SSCrs36K.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-DZiVuTSZh95w6rNejxuyeC18ycZyBntI.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-DZiVuTSZh95w6rNejxuyeC18ycZyBntI.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-EXUzD5QJkTwezpH84F0aGzkgHThMNQuF.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-EXUzD5QJkTwezpH84F0aGzkgHThMNQuF.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-WDaQhhivr6wpEmakQ9d6loMWGdtutn4O.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-WDaQhhivr6wpEmakQ9d6loMWGdtutn4O.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-ap1bW9RIjylgoTtMgM2EST1TlzKkULzU.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-ap1bW9RIjylgoTtMgM2EST1TlzKkULzU.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-i7iLkQRachKSaf0vqI9HOqEFgNWHmJ4Y.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-i7iLkQRachKSaf0vqI9HOqEFgNWHmJ4Y.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-wvSNBhg2lzNMG9fkXe7sATaG3F5Yj3hU.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-wvSNBhg2lzNMG9fkXe7sATaG3F5Yj3hU.xlsx -------------------------------------------------------------------------------- /storage/framework/laravel-excel/laravel-excel-x0AsN8vDkgfNAeBhBYaIbnGAJDx8MVlK.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lamaau/spp/4b471e583e12d1d94bc3063687166ebc10973efc/storage/framework/laravel-excel/laravel-excel-x0AsN8vDkgfNAeBhBYaIbnGAJDx8MVlK.xlsx -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/Auth/InstallTest.php: -------------------------------------------------------------------------------- 1 | get(route('dashboard'))->assertStatus(302); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | swap(Mix::class, function () { 20 | return ''; 21 | }); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require("laravel-mix"); 2 | 3 | mix.js("resources/js/app.js", "public/js") 4 | .sass("resources/sass/app.scss", "public/css") 5 | .copyDirectory('node_modules/@fortawesome/fontawesome-free/webfonts', 'public/webfonts') 6 | .copyDirectory('node_modules/bs4-summernote/src/icons', 'public/css/icons') 7 | .copyDirectory('node_modules/bs4-summernote/dist/font', 'public/css/fonts/summernote') 8 | .combine('resources/css/*.css', 'public/css/template.css') 9 | .version(); --------------------------------------------------------------------------------