├── .env.docker.example ├── .env.example ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── apache-config.conf ├── app-install.sh ├── app ├── AbAccount.php ├── AbAccountType.php ├── Appointment.php ├── CalendarGroup.php ├── CmsNavMenu.php ├── CmsNavMenuDropdownItem.php ├── CmsNavMenuItem.php ├── CmsTheme.php ├── CmsWebpageContentCssOption.php ├── Company.php ├── CompanyInfo.php ├── Console │ └── Kernel.php ├── ContactMessage.php ├── Customer.php ├── CustomerComment.php ├── CustomerDocumentFile.php ├── DocumentFile.php ├── DocumentFileUserGroup.php ├── EducApplication.php ├── EducInstitution.php ├── EducInstitutionProgram.php ├── Events │ └── NewsletterSubscriptionCreated.php ├── Exceptions │ └── Handler.php ├── Expense.php ├── ExpenseAddition.php ├── ExpenseAdditionHeading.php ├── ExpenseCategory.php ├── ExpenseItem.php ├── ExpensePayment.php ├── ExpensePaymentType.php ├── Gallery.php ├── GalleryImage.php ├── Http │ ├── Controllers │ │ ├── AccountingController.php │ │ ├── AppointmentController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── BgcController.php │ │ ├── CalendarController.php │ │ ├── CalendarGroupController.php │ │ ├── ChangePasswordController.php │ │ ├── CmsGalleryController.php │ │ ├── CmsNavMenuController.php │ │ ├── CmsPostController.php │ │ ├── CmsThemeController.php │ │ ├── CmsWebpageController.php │ │ ├── CompanyController.php │ │ ├── ContactFormController.php │ │ ├── Controller.php │ │ ├── CustomerController.php │ │ ├── DashboardController.php │ │ ├── DaybookController.php │ │ ├── DocumentFileController.php │ │ ├── EducInstitutionController.php │ │ ├── ExpenseController.php │ │ ├── HelpController.php │ │ ├── HomeController.php │ │ ├── InventoryController.php │ │ ├── NewsletterSubscriptionController.php │ │ ├── OnlineOrderController.php │ │ ├── PrintController.php │ │ ├── ProductCategoryController.php │ │ ├── ProductController.php │ │ ├── ProductQuestionController.php │ │ ├── ProductVendorController.php │ │ ├── PurchaseController.php │ │ ├── ReportController.php │ │ ├── SaleController.php │ │ ├── SaleQuotationController.php │ │ ├── SeatTableController.php │ │ ├── SettingsController.php │ │ ├── TeamController.php │ │ ├── TestimonialController.php │ │ ├── TodoController.php │ │ ├── UrlLinkController.php │ │ ├── UserGroupController.php │ │ ├── UserOwnProfileController.php │ │ ├── UsersController.php │ │ ├── VacancyController.php │ │ ├── VatController.php │ │ ├── VendorController.php │ │ ├── WebsiteController.php │ │ └── WeekbookController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── IsAdmin.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── JournalEntry.php ├── JournalEntryItem.php ├── LedgerEntry.php ├── Listeners │ ├── LogSuccessfulLogin.php │ └── SendNewsletterSubscriptionCreatedNotification.php ├── Livewire │ ├── Accounting │ │ └── Dashboard │ │ │ ├── AccountingAccountCreate.php │ │ │ ├── AccountingAccountList.php │ │ │ ├── AccountingAccountTypeCreate.php │ │ │ ├── AccountingAccountTypeList.php │ │ │ ├── AccountingBalanceSheet.php │ │ │ ├── AccountingCashFlow.php │ │ │ ├── AccountingComponent.php │ │ │ ├── AccountingIncomeStatement.php │ │ │ ├── AccountingJournalBook.php │ │ │ ├── AccountingLedgerBook.php │ │ │ ├── AccountingTrialBalanceComponent.php │ │ │ ├── JournalEntryList.php │ │ │ └── LedgerDisplay.php │ ├── AppInfo │ │ └── Dashboard │ │ │ ├── LvCompanyInfo.php │ │ │ ├── LvPackageInfo.php │ │ │ └── LvPackageWelcome.php │ ├── Appointment │ │ ├── Dashboard │ │ │ ├── AppointmentComponent.php │ │ │ ├── AppointmentDisplay.php │ │ │ └── AppointmentList.php │ │ └── Website │ │ │ └── AppointmentCreate.php │ ├── CafeSale │ │ └── Dashboard │ │ │ ├── CafeSaleComponent.php │ │ │ ├── SeatTableCreate.php │ │ │ ├── SeatTableDisplay.php │ │ │ ├── SeatTableList.php │ │ │ ├── SeatTableListDisplay.php │ │ │ └── SeatTableWorkDisplay.php │ ├── Calendar │ │ ├── Dashboard │ │ │ ├── CalendarComponent.php │ │ │ ├── CalendarDatePickerNepali.php │ │ │ ├── CalendarEventCreate.php │ │ │ ├── CalendarEventDisplay.php │ │ │ ├── CalendarEventEditDate.php │ │ │ ├── CalendarEventEditIsHoliday.php │ │ │ ├── CalendarEventEditName.php │ │ │ ├── CalendarGlanceComponent.php │ │ │ ├── CalendarGroupComponent.php │ │ │ ├── CalendarGroupCreate.php │ │ │ ├── CalendarGroupDisplay.php │ │ │ └── CalendarGroupList.php │ │ └── Website │ │ │ ├── CalendarComponent.php │ │ │ ├── TodayDisplay.php │ │ │ └── UpcomingEventsList.php │ ├── CarousalComponent.php │ ├── Chart │ │ └── Dashboard │ │ │ ├── ChartExpenseByCategory.php │ │ │ ├── ChartSaleByCategory.php │ │ │ └── ChartWeekSales.php │ ├── Cms │ │ ├── Dashboard │ │ │ ├── CmsGlance.php │ │ │ ├── GalleryAddImage.php │ │ │ ├── GalleryComponent.php │ │ │ ├── GalleryCreate.php │ │ │ ├── GalleryDeleteConfirm.php │ │ │ ├── GalleryDisplay.php │ │ │ ├── GalleryList.php │ │ │ ├── GalleryUpdate.php │ │ │ ├── GalleryUpdateName.php │ │ │ ├── MediaSelectImageComponent.php │ │ │ ├── NavMenuComponent.php │ │ │ ├── NavMenuCreate.php │ │ │ ├── NavMenuDisplay.php │ │ │ ├── NavMenuDisplayNavMenuDropdownItemCreate.php │ │ │ ├── NavMenuDisplayNavMenuItemCreate.php │ │ │ ├── NavMenuList.php │ │ │ ├── NoticeGlanceComponent.php │ │ │ ├── PostCategoryCreate.php │ │ │ ├── PostComponent.php │ │ │ ├── PostList.php │ │ │ ├── ThemeComponent.php │ │ │ ├── WebpageAddWebpageCategory.php │ │ │ ├── WebpageComponent.php │ │ │ ├── WebpageContentCreate │ │ │ │ ├── Gallery.php │ │ │ │ ├── Row.php │ │ │ │ └── YoutubeVideo.php │ │ │ ├── WebpageContentCreateHeading.php │ │ │ ├── WebpageContentCreateImage.php │ │ │ ├── WebpageContentCreateMediaAndText.php │ │ │ ├── WebpageContentCreateParagraph.php │ │ │ ├── WebpageContentDisplay.php │ │ │ ├── WebpageContentEdit.php │ │ │ ├── WebpageContentEditCss.php │ │ │ ├── WebpageCreate.php │ │ │ ├── WebpageDisplay.php │ │ │ ├── WebpageDisplayWebpageContentCreate.php │ │ │ ├── WebpageEditFeaturedImage.php │ │ │ ├── WebpageEditProductCategoryPage.php │ │ │ ├── WebpageEditTeamTeampage.php │ │ │ ├── WebpageEditVisibility.php │ │ │ ├── WebpageEditWebpageCategoryPostpage.php │ │ │ └── WebpageList.php │ │ └── Website │ │ │ ├── ContactComponent.php │ │ │ ├── CreateWebpageQuestion.php │ │ │ ├── GalleryDisplay.php │ │ │ ├── LatestPostList.php │ │ │ ├── LatestPostListGrid.php │ │ │ ├── NavMenu.php │ │ │ ├── PostList.php │ │ │ ├── RelatedPosts.php │ │ │ └── WebpageDisplay.php │ ├── Company │ │ └── Dashboard │ │ │ ├── BriefDescriptionCreate.php │ │ │ ├── BriefDescriptionEdit.php │ │ │ ├── CompanyComponent.php │ │ │ ├── CompanyInfoComponent.php │ │ │ ├── CompanyInfoCreate.php │ │ │ ├── CompanyInfoDisplay.php │ │ │ ├── CompanyInfoUpdate.php │ │ │ └── GoogleMapShareLinkCreate.php │ ├── ContactForm │ │ └── Dashboard │ │ │ ├── ContactFormComponent.php │ │ │ ├── ContactMessageCreate.php │ │ │ ├── ContactMessageDisplay.php │ │ │ ├── ContactMessageGlanceComponent.php │ │ │ └── ContactMessageList.php │ ├── Core │ │ └── Dashboard │ │ │ ├── CoreExpenseDisplay.php │ │ │ ├── CorePurchaseDisplay.php │ │ │ ├── CorePurchaseList.php │ │ │ ├── CoreSaleInvoiceDisplay.php │ │ │ └── CoreSaleQuotationDisplay.php │ ├── Customer │ │ └── Dashboard │ │ │ ├── CustomerCommentCreate.php │ │ │ ├── CustomerComponent.php │ │ │ ├── CustomerCreate.php │ │ │ ├── CustomerDetail.php │ │ │ ├── CustomerDocumentFileCreate.php │ │ │ ├── CustomerEditEmail.php │ │ │ ├── CustomerEditName.php │ │ │ ├── CustomerEditPan.php │ │ │ ├── CustomerEditPhone.php │ │ │ ├── CustomerInvoicePaymentCreate.php │ │ │ ├── CustomerLedger.php │ │ │ ├── CustomerList.php │ │ │ ├── CustomerPaymentCreate.php │ │ │ ├── CustomerSaleList.php │ │ │ └── CustomerSearch.php │ ├── Dashboard │ │ ├── AppLeftMenu.php │ │ ├── MiscGlance.php │ │ └── Settings │ │ │ └── LoginPageSetting.php │ ├── DocumentFile │ │ ├── Dashboard │ │ │ ├── DocumentFileComponent.php │ │ │ ├── DocumentFileCreate.php │ │ │ ├── DocumentFileDisplay.php │ │ │ ├── DocumentFileDisplayPdf.php │ │ │ ├── DocumentFileEditUserGroup.php │ │ │ └── DocumentFileList.php │ │ └── Website │ │ │ └── DocumentFileList.php │ ├── EcommWebsite │ │ ├── Checkout.php │ │ ├── HeroOrder.php │ │ ├── HomeComponent.php │ │ ├── HomeSearchResult.php │ │ ├── Menu.php │ │ ├── ProductCategoryProductList.php │ │ ├── ProductCategoryProductListL1.php │ │ ├── ProductCategoryRandomProductList.php │ │ ├── ProductDisplay.php │ │ ├── ProductListDisplay.php │ │ ├── ProductOrder.php │ │ ├── ShoppingCartBadge.php │ │ ├── SubscribeUs.php │ │ ├── TopMenu.php │ │ └── Website │ │ │ └── CreateProductEnquiry.php │ ├── Educ │ │ ├── Application │ │ │ └── Dashboard │ │ │ │ └── ApplicationCreate.php │ │ └── Institution │ │ │ └── Dashboard │ │ │ ├── InstitutionComponent.php │ │ │ ├── InstitutionCreate.php │ │ │ ├── InstitutionDisplay.php │ │ │ ├── InstitutionList.php │ │ │ └── InstitutionProgramCreate.php │ ├── Expense │ │ └── Dashboard │ │ │ ├── ExpenseCategoryCreate.php │ │ │ ├── ExpenseCategoryList.php │ │ │ ├── ExpenseComponent.php │ │ │ ├── ExpenseCreate.php │ │ │ ├── ExpenseDisplay.php │ │ │ ├── ExpenseList.bak.php │ │ │ ├── ExpenseList.php │ │ │ ├── ExpenseListExpenseDeleteConfirm.php │ │ │ ├── ExpenseReport.php │ │ │ └── ExpenseWorkMakePayment.php │ ├── FlashCard │ │ ├── FlashCardCurrentBookings.php │ │ ├── FlashCardSaleInvoice.php │ │ ├── FlashCardTotalBookingsToday.php │ │ ├── FlashCardTotalExpenseToday.php │ │ ├── FlashCardTotalPurchaseToday.php │ │ ├── FlashCardTotalSalesToday.php │ │ └── FlashCardTotalTakeawaysToday.php │ ├── Inventory │ │ ├── InventoryComponent.php │ │ └── InventoryProductDetail.php │ ├── Misc │ │ ├── ClockDisplayComponent.php │ │ ├── CounterDashComponent.php │ │ ├── HelpComponent.php │ │ ├── RecentSaleInvoicesComponent.php │ │ ├── SettingsComponent.php │ │ ├── SupportComponent.php │ │ ├── TransactionsNavigator.php │ │ └── VatReturn.php │ ├── NewsletterSubscription │ │ └── Dashboard │ │ │ ├── NewsletterSubscriptionComponent.php │ │ │ ├── NewsletterSubscriptionDisplay.php │ │ │ └── NewsletterSubscriptionList.php │ ├── Notice │ │ └── Dashboard │ │ │ └── LatestNoticeList.php │ ├── OnlineOrder │ │ └── Dashboard │ │ │ ├── OnlineOrderComponent.php │ │ │ ├── OnlineOrderCounter.php │ │ │ ├── OnlineOrderDisplay.php │ │ │ ├── OnlineOrderGlance.php │ │ │ ├── OnlineOrderList.php │ │ │ └── OnlineOrderSearch.php │ ├── Product │ │ ├── Dashboard │ │ │ ├── ProductAnswerCreate.php │ │ │ ├── ProductComponent.php │ │ │ ├── ProductCreate.bak.php │ │ │ ├── ProductCreate.php │ │ │ ├── ProductCreateFromCsv.php │ │ │ ├── ProductDisplay.php │ │ │ ├── ProductEditAddProductFeature.php │ │ │ ├── ProductEditAddProductFeatureHeading.php │ │ │ ├── ProductEditAddProductOption.php │ │ │ ├── ProductEditAddProductOptionHeading.php │ │ │ ├── ProductEditAddProductSpecification.php │ │ │ ├── ProductEditAddProductSpecificationHeading.php │ │ │ ├── ProductEditCategory.php │ │ │ ├── ProductEditDescription.php │ │ │ ├── ProductEditImage.php │ │ │ ├── ProductEditName.php │ │ │ ├── ProductEditPrice.php │ │ │ ├── ProductEditPriceUnit.php │ │ │ ├── ProductEditVideoLink.php │ │ │ ├── ProductFeatureEdit.php │ │ │ ├── ProductGalleryAddImages.php │ │ │ ├── ProductGalleryCreate.php │ │ │ ├── ProductGalleryDisplay.php │ │ │ ├── ProductList.php │ │ │ ├── ProductQuestionComponent.php │ │ │ ├── ProductQuestionDisplay.php │ │ │ ├── ProductQuestionList.php │ │ │ ├── ProductSearch.php │ │ │ ├── ProductSpecificationKeywordEdit.php │ │ │ ├── ProductSpecificationValueEdit.php │ │ │ └── ProductVendorLink.php │ │ └── Website │ │ │ ├── FeaturedProductList.php │ │ │ ├── ProductFilter.php │ │ │ ├── ProductListingDisplay.php │ │ │ ├── ProductQuestionCreate.php │ │ │ └── ProductReviewCreate.php │ ├── ProductCategory │ │ └── Dashboard │ │ │ ├── ProductCategoryComponent.php │ │ │ ├── ProductCategoryCreate.php │ │ │ ├── ProductCategoryDisplay.php │ │ │ ├── ProductCategoryEdit.php │ │ │ ├── ProductCategoryEditImage.php │ │ │ ├── ProductCategoryEditName.php │ │ │ ├── ProductCategoryList.php │ │ │ ├── ProductCategoryProductList.php │ │ │ ├── ProductCategoryProductListL1.php │ │ │ └── ProductCategorySearch.php │ ├── ProductVendor │ │ └── Dashboard │ │ │ ├── .ProductVendorSearch.php.swp │ │ │ ├── ProductVendorComponent.php │ │ │ ├── ProductVendorCreate.php │ │ │ ├── ProductVendorDisplay.php │ │ │ ├── ProductVendorList.php │ │ │ └── ProductVendorSearch.php │ ├── Purchase │ │ └── Dashboard │ │ │ ├── PurchaseAddItem.php │ │ │ ├── PurchaseComponent.php │ │ │ ├── PurchaseCreate.php │ │ │ ├── PurchaseCreateConfirmPurchaseItemDelete.php │ │ │ ├── PurchaseDisplay.php │ │ │ ├── PurchaseList.bak.php │ │ │ ├── PurchaseList.php │ │ │ ├── PurchaseListPurchaseDeleteConfirm.php │ │ │ ├── PurchaseMakePayment.php │ │ │ └── PurchaseSearch.php │ ├── RecordBook │ │ └── Dashboard │ │ │ ├── DaybookBookingDisplay.php │ │ │ ├── DaybookComponent.php │ │ │ ├── DaybookSaleInvoiceDisplay.php │ │ │ ├── DaybookSaleInvoiceDisplayShowPayments.php │ │ │ ├── ViewbookComponent.php │ │ │ └── WeekbookComponent.php │ ├── Report │ │ └── Dashboard │ │ │ ├── ReportComponent.php │ │ │ ├── ReportProductPurchaseCount.php │ │ │ ├── ReportProductSalesCount.php │ │ │ ├── ReportTransactionComponent.php │ │ │ └── TableTopSellingProductsDay.php │ ├── SaleInvoice │ │ └── Dashboard │ │ │ ├── SaleInvoiceComponent.php │ │ │ ├── SaleInvoiceCreate.php │ │ │ ├── SaleInvoiceDetail.php │ │ │ ├── SaleInvoiceList.php │ │ │ ├── SaleInvoiceSearch.php │ │ │ ├── SaleInvoiceWork.php │ │ │ ├── SaleInvoiceWorkAddItem.php │ │ │ ├── SaleInvoiceWorkConfirmSaleInvoiceItemDelete.php │ │ │ └── SaleInvoiceWorkMakePayment.php │ ├── SaleQuotation │ │ └── Dashboard │ │ │ ├── SaleQuotationCreate.php │ │ │ ├── SaleQuotationList.php │ │ │ ├── SaleQuotationSearch.php │ │ │ ├── SaleQuotationWork.php │ │ │ ├── SaleQuotationWorkAddItem.php │ │ │ └── SaleQuotationWorkConfirmSaleQuotationItemDelete.php │ ├── SeatTable │ │ └── Dashboard │ │ │ └── SeatTableSettingsComponent.php │ ├── Shop │ │ └── Dashboard │ │ │ ├── ProductGlance.php │ │ │ ├── SaleQuotationComponent.php │ │ │ └── ShopGlance.php │ ├── Takeaway │ │ ├── TakeawayComponent.php │ │ ├── TakeawayCreate.php │ │ ├── TakeawayList.php │ │ └── TakeawayListConfirmDelete.php │ ├── Team │ │ └── Dashboard │ │ │ ├── TeamComponent.php │ │ │ ├── TeamCreate.php │ │ │ ├── TeamDisplay.php │ │ │ ├── TeamDisplayTeamMemberCreate.php │ │ │ ├── TeamDisplayTeamMemberUpdate.php │ │ │ ├── TeamDisplayTeamMembersCreateFromCsv.php │ │ │ ├── TeamList.php │ │ │ ├── TeamMemberAddAvailability.php │ │ │ ├── TeamMemberAppointmentList.php │ │ │ ├── TeamMemberAppointmentSetting.php │ │ │ ├── TeamMemberEditEmail.php │ │ │ ├── TeamMemberEditName.php │ │ │ ├── TeamMemberEditPhone.php │ │ │ ├── TeamMemberEditPicture.php │ │ │ └── TeamUpdate.php │ ├── Testimonial │ │ ├── Dashboard │ │ │ ├── TestimonialComponent.php │ │ │ ├── TestimonialDisplay.php │ │ │ └── TestimonialList.php │ │ └── Website │ │ │ ├── TestimonialCreate.php │ │ │ └── TestimonialList.php │ ├── Todo │ │ └── Dashboard │ │ │ ├── TodoComponent.php │ │ │ ├── TodoCreate.php │ │ │ ├── TodoDisplay.php │ │ │ ├── TodoEditAssignedTo.php │ │ │ ├── TodoEditDescription.php │ │ │ ├── TodoEditDueDate.php │ │ │ ├── TodoEditPriority.php │ │ │ ├── TodoEditStatus.php │ │ │ ├── TodoEditTitle.php │ │ │ ├── TodoGlance.php │ │ │ ├── TodoList.php │ │ │ └── TodoListConfirmDelete.php │ ├── UrlLink │ │ └── Dashboard │ │ │ ├── UrlLinkComponent.php │ │ │ ├── UrlLinkCreate.php │ │ │ ├── UrlLinkDisplay.php │ │ │ ├── UrlLinkEditUserGroup.php │ │ │ └── UrlLinkList.php │ ├── User │ │ ├── Dashboard │ │ │ ├── AddUserToGroup.php │ │ │ ├── UserComponent.php │ │ │ ├── UserCreate.php │ │ │ ├── UserDisplay.php │ │ │ ├── UserList.php │ │ │ └── UserProfileDisplay.php │ │ └── Website │ │ │ └── Signup.php │ ├── UserGroup │ │ └── Dashboard │ │ │ ├── UserGroupComponent.php │ │ │ ├── UserGroupCreate.php │ │ │ ├── UserGroupDisplay.php │ │ │ └── UserGroupList.php │ ├── UserProfile │ │ └── Dashboard │ │ │ └── ChangePasswordComponent.php │ ├── Vacancy │ │ ├── Dashboard │ │ │ ├── VacancyComponent.php │ │ │ ├── VacancyCreate.php │ │ │ ├── VacancyDisplay.php │ │ │ ├── VacancyEditDescription.php │ │ │ ├── VacancyEditTitle.php │ │ │ └── VacancyList.php │ │ └── Website │ │ │ ├── VacancyList.php │ │ │ └── VacancyView.php │ ├── Vendor │ │ └── Dashboard │ │ │ ├── VendorComponent.php │ │ │ ├── VendorCreate.php │ │ │ ├── VendorDisplay.php │ │ │ ├── VendorDisplaySettle.php │ │ │ ├── VendorEditEmail.php │ │ │ ├── VendorEditName.php │ │ │ ├── VendorEditPan.php │ │ │ ├── VendorEditPhone.php │ │ │ ├── VendorList.php │ │ │ ├── VendorPurchasePaymentCreate.php │ │ │ └── VendorSearch.php │ └── Webpage │ │ └── Dashboard │ │ ├── PostSearch.php │ │ └── WebpageSearch.php ├── Mail │ └── NewsletterSubscriptionCreatedNotificationEmail.php ├── Models │ ├── Product.php │ ├── ProductAnswer.php │ ├── ProductCategory.php │ ├── ProductEnquiry.php │ ├── ProductFeature.php │ ├── ProductFeatureHeading.php │ ├── ProductOption.php │ ├── ProductOptionHeading.php │ ├── ProductQuestion.php │ ├── ProductReview.php │ ├── ProductSpecification.php │ ├── ProductSpecificationHeading.php │ ├── ProductVendor.php │ ├── Purchase │ │ ├── Purchase.php │ │ ├── PurchaseAddition.php │ │ ├── PurchaseAdditionHeading.php │ │ ├── PurchaseItem.php │ │ ├── PurchasePayment.php │ │ └── PurchasePaymentType.php │ └── SaleInvoice │ │ ├── SaleInvoice.php │ │ ├── SaleInvoiceAddition.php │ │ ├── SaleInvoiceAdditionHeading.php │ │ ├── SaleInvoiceItem.php │ │ ├── SaleInvoicePayment.php │ │ └── SaleInvoicePaymentType.php ├── NewsletterSubscription.php ├── Policies │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Sale.php ├── SaleItem.php ├── SaleQuotation.php ├── SaleQuotationItem.php ├── SchoolCalendarEvent.php ├── SchoolCalendarEventCalendarGroup.php ├── SeatTable.php ├── SeatTableBooking.php ├── Services │ ├── Appointment │ │ └── AppointmentService.php │ ├── Calendar │ │ └── CalendarGroupService.php │ ├── Cms │ │ ├── GalleryService.php │ │ ├── PostService.php │ │ └── WebpageService.php │ ├── ContactMessage │ │ └── ContactMessageService.php │ ├── DocumentFile │ │ └── DocumentFileService.php │ ├── NewsletterSubscription │ │ └── NewsletterSubscriptionService.php │ ├── ProductCategoryService.php │ ├── ProductQuestionService.php │ ├── ProductService.php │ ├── ProductVendorService.php │ ├── Shop │ │ ├── CustomerService.php │ │ ├── ExpenseService.php │ │ ├── PurchaseService.php │ │ ├── SaleInvoiceService.php │ │ └── VendorService.php │ ├── Team │ │ └── TeamService.php │ ├── Testimonial │ │ └── TestimonialService.php │ ├── Todo │ │ └── TodoService.php │ ├── UrlLink │ │ └── UrlLinkService.php │ ├── User │ │ └── UserService.php │ └── Vacancy │ │ └── VacancyService.php ├── Takeaway.php ├── Team.php ├── TeamMember.php ├── TeamMemberAppointmentAvailability.php ├── Testimonial.php ├── Todo.php ├── Traits │ ├── InventoryTrait.php │ ├── MiscTrait.php │ ├── ModesTrait.php │ └── NepaliDateTrait.php ├── UrlLink.php ├── UrlLinkUserGroup.php ├── User.php ├── UserGroup.php ├── UserUserGroup.php ├── Vacancy.php ├── Vendor.php ├── View │ └── Components │ │ ├── AlertComponent.php │ │ ├── BoxGeneric.php │ │ ├── BoxList.php │ │ ├── CardBox.php │ │ ├── CreateBoxComponent.php │ │ ├── MenuBarHorizontal.php │ │ └── MenuItem.php ├── Webpage.php ├── WebpageCategory.php ├── WebpageContent.php ├── WebpageProductCategory.php ├── WebpageQuestion.php ├── WebpageTeam.php ├── WebpageWebpageCategory.php ├── WebpageWebpageCategoryPostpage.php ├── WebsiteOrder.php ├── WebsiteOrderItem.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── faicons.php ├── filesystems.php ├── hashing.php ├── livewire.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── NewsletterSubscriptionFactory.php │ └── UserFactory.php ├── migrations │ ├── .2022_02_07_133146_create_sale_payment_table.php.swp │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_10_23_081132_create_expense_category_table.php │ ├── 2021_10_23_081318_create_expense_table.php │ ├── 2022_02_03_113138_create_product_category_table.php │ ├── 2022_02_04_064510_create_product_table.php │ ├── 2022_02_04_082311_create_vendor_table.php │ ├── 2022_02_04_090348_create_purchase_table.php │ ├── 2022_02_04_094253_create_customer_table.php │ ├── 2022_02_08_040000_create_seat_table_table.php │ ├── 2022_02_08_040100_create_seat_table_booking_table.php │ ├── 2022_02_08_043624_create_sale_invoice_table.php │ ├── 2022_02_08_044157_create_sale_invoice_item_table.php │ ├── 2022_02_08_045000_create_sale_invoice_payment_table.php │ ├── 2022_02_27_143715_create_website_order_table.php │ ├── 2022_03_02_123433_create_company_table.php │ ├── 2022_03_15_132323_create_sale_invoice_addition_heading.php │ ├── 2022_03_15_132839_create_sale_invoice_addition.php │ ├── 2022_03_16_183612_update_sale_invoice_item_table.php │ ├── 2022_03_17_090646_create_sale_invoice_payment_type_table.php │ ├── 2022_03_17_091411_update_sale_invoice_payment_table.php │ ├── 2022_03_19_143658_create_website_order_item_table.php │ ├── 2022_03_20_135220_create_takeaway_table.php │ ├── 2022_03_20_141035_update_sale_invoice_table.php │ ├── 2022_03_24_115954_create_purchase_item_table.php │ ├── 2022_03_24_124337_update_purchase_table.php │ ├── 2022_03_24_160000_create_purchase_payment_type_table.php │ ├── 2022_03_24_161953_create_purchase_payment_table.php │ ├── 2022_03_24_172301_update_product_category_table.php │ ├── 2022_03_25_121524_create_ab_account_table.php │ ├── 2022_03_25_135158_create_journal_entry_table.php │ ├── 2022_03_25_140046_create_journal_entry_item_table.php │ ├── 2022_03_25_175952_update_customer_table.php │ ├── 2022_03_26_134736_create_ledger_entry_table.php │ ├── 2022_03_27_114312_create_expense_payment_type_table.php │ ├── 2022_03_27_114500_create_expense_payment_table.php │ ├── 2022_04_08_172100_create_gallery_table.php │ ├── 2022_04_08_172200_create_gallery_image_table.php │ ├── 2022_04_10_130057_create_webpage_table.php │ ├── 2022_04_10_132549_create_webpage_content_table.php │ ├── 2022_04_10_142722_create_cms_nav_menu_table.php │ ├── 2022_04_10_155657_create_cms_nav_menu_item_table.php │ ├── 2022_04_11_160955_create_cms_nav_menu_dropdown_item.php │ ├── 2022_04_11_181549_update_purchase_table_use_soft_delete.php │ ├── 2022_04_11_181832_update_purchase_payment_table.php │ ├── 2022_05_26_133124_update_sale_invoice_item_table_add_price.php │ ├── 2022_05_28_035438_update_sale_invoice_table_use_soft_delete.php │ ├── 2022_05_28_035737_update_takeaway_table_use_soft_delete.php │ ├── 2022_05_28_041149_update_sale_invoice_payment_table_use_soft_delete.php │ ├── 2022_06_29_145636_update_vendor_table_add_ab_account_column.php │ ├── 2022_07_01_110326_update_ab_account_table_add_increase_type_column.php │ ├── 2022_07_01_113154_create_ab_account_type_table.php │ ├── 2022_07_01_113952_update_ab_account_table_add_ab_account_type_id_column.php │ ├── 2022_07_08_192250_create_financial_year_table.php │ ├── 2022_07_12_175859_update_product_table_add_stock_applicable_column.php │ ├── 2022_07_16_210217_create_expense_addition_heading_table.php │ ├── 2022_07_16_210423_create_expense_addition_table.php │ ├── 2022_07_17_021249_update_expense_table_add_payment_status_column.php │ ├── 2022_07_17_114130_create_purchase_addition_heading_table.php │ ├── 2022_07_17_114304_create_purchase_addition_table.php │ ├── 2022_07_21_081923_create_expense_item_table.php │ ├── 2022_07_21_162415_update_expense_table_add_vendor_id_column.php │ ├── 2022_07_22_120703_update_product_category_table_make_image_nullable.php │ ├── 2022_07_22_121811_update_product_table_make_image_nullable.php │ ├── 2022_07_23_222858_update_sale_invoice_table_add_creator_column.php │ ├── 2022_07_23_230803_update_purchase_table_add_creator_column.php │ ├── 2022_07_23_231650_update_expense_table_add_creator_column.php │ ├── 2022_07_24_165402_update_purchase_table_add_creation_status_column.php │ ├── 2022_07_24_171209_update_expense_table_add_creation_status_column.php │ ├── 2022_07_25_151627_update_product_table_add_columns.php │ ├── 2022_07_27_114829_update_product_table_add_stock_notification_count_column.php │ ├── 2022_07_27_123302_update_product_table_add_opening_stock_count_column.php │ ├── 2022_07_27_131109_update_expense_item_table_use_soft_deletes.php │ ├── 2022_07_27_131253_update_expense_table_use_soft_deletes.php │ ├── 2022_07_27_131351_update_expense_addition_table_use_soft_deletes.php │ ├── 2022_07_27_131441_update_expense_payment_table_use_soft_deletes.php │ ├── 2022_07_28_121123_update_purchase_table_add_purchase_date_column.php │ ├── 2022_07_29_183830_update_product_table_add_opening_stock_timestamp_column.php │ ├── 2022_08_05_112504_create_todo_table.php │ ├── 2022_08_08_100418_update_expense_table_drop_old_columns.php │ ├── 2022_08_09_153117_update_purchase_item_table_make_int_decimal.php │ ├── 2022_08_09_163105_update_purchase_payment_table_make_amount_decimal.php │ ├── 2022_08_09_164510_update_purchase_addition_make_amount_decimal.php │ ├── 2022_08_09_165029_update_purchase_item_make_quantity_decimal.php │ ├── 2022_08_10_144859_update_expense_item_table_make_amount_decimal.php │ ├── 2022_08_10_145224_update_expense_payment_table_make_amount_decimal.php │ ├── 2022_08_11_110818_update_expense_addition_table_make_amount_decimal.php │ ├── 2023_01_04_164114_update_webpage_content_table.php │ ├── 2023_01_05_165650_create_cms_theme_table.php │ ├── 2023_02_09_153646_create_school_calendar_event_table.php │ ├── 2023_02_13_121020_create_team_table.php │ ├── 2023_02_13_130121_create_team_member_table.php │ ├── 2023_02_13_181000_update_webpage_content_table_make_nullable.php │ ├── 2023_02_13_201649_update_webpage_content_table_add_video.php │ ├── 2023_02_14_073431_update_webpage_table_enable_post.php │ ├── 2023_02_14_104701_update_webpage_table_enable_featured_image.php │ ├── 2023_02_17_104744_update_team_member_table_add_address.php │ ├── 2023_02_17_105718_update_team_table_add_team_type.php │ ├── 2023_02_17_225622_create_contact_message_table.php │ ├── 2023_03_05_232702_create_product_specification_table.php │ ├── 2023_03_17_135239_update_webpage_table_add_visibility.php │ ├── 2023_03_17_151517_create_webpage_category_table.php │ ├── 2023_03_17_152909_create_webpage__webpage_category_table.php │ ├── 2023_03_20_105509_update_webpage_table_add_creator.php │ ├── 2023_03_21_154743_update_cms_theme_table_add_nav_menu_options.php │ ├── 2023_03_21_211211_create_cms_webpage_content_css_option_table.php │ ├── 2023_03_23_113836_update_team_member_table_add_position.php │ ├── 2023_03_25_112913_update_sale_invoice_table_add_creation_status.php │ ├── 2023_04_06_223902_update_gallery_image_table_add_position_column.php │ ├── 2023_04_21_150957_update_contact_message_table_add_status_column.php │ ├── 2023_04_22_150853_create_company_info_table.php │ ├── 2023_05_06_122906_update_product_category_table_add_parent_product_category.php │ ├── 2023_05_12_123037_update_seat_table_table_make_name_column_unique.php │ ├── 2023_06_05_212456_update_product_table_add_show_in_front_end_column.php │ ├── 2023_08_24_120230_create_appointment_table.php │ ├── 2023_08_28_185859_create_team_member_appointment_availability_table.php │ ├── 2023_08_31_114724_update_appointment_table_add_status_column.php │ ├── 2023_09_02_092044_create_vacancy_table.php │ ├── 2023_09_28_205445_update_school_calendar_event_table_rename_primary_id.php │ ├── 2023_10_12_130850_update_company_table_add_brief_description_column.php │ ├── 2023_10_18_112605_create_newsletter_subscription_table.php │ ├── 2023_10_31_103830_update_product_table_add_gallery_id_column.php │ ├── 2023_10_31_154744_update_product_table_add_video_link_column.php │ ├── 2023_11_01_121515_create_testimonial_table.php │ ├── 2023_11_02_101416_create_product_review_table.php │ ├── 2023_11_02_125156_create_product_question_table.php │ ├── 2023_11_02_164856_create_product_answer_table.php │ ├── 2023_11_03_104016_update_product_table_add_website_views_column.php │ ├── 2023_11_10_051516_update_vacancy_table_add_job_location_column.php │ ├── 2023_11_21_132535_update_company_table_make_brief_description_nullable.php │ ├── 2023_11_26_091256_update_gallery_table_add_show_in_gallery_page_column.php │ ├── 2023_11_29_092531_create_calendar_group_table.php │ ├── 2023_11_29_153857_create_school_calendar_event__calendar_group_table.php │ ├── 2023_12_01_053400_create_sale_quotation_table.php │ ├── 2023_12_01_061903_create_sale_quotation_item_table.php │ ├── 2023_12_12_183539_update_webpage_table_add_website_views_column.php │ ├── 2023_12_14_140656_update_company_table_add_google_map_share_link_column.php │ ├── 2023_12_20_140544_update_sale_quotation_item_table_make_unit_column_nullable.php │ ├── 2023_12_20_140935_update_sale_quotation_item_table_make_drop_price_total_column.php │ ├── 2023_12_30_143541_create_url_link_table.php │ ├── 2024_01_04_144251_create_document_file_table.php │ ├── 2024_03_04_144212_create_user_group_table.php │ ├── 2024_03_27_152722_alter_product_table_add_featured_product_column.php │ ├── 2024_04_26_224139_create_product_feature_heading_table.php │ ├── 2024_04_26_224500_create_product_feature_table.php │ ├── 2024_04_28_125501_create_product_specification_heading_table.php │ ├── 2024_04_28_132611_alter_product_specification_table_add_product_specification_heading_id_column.php │ ├── 2024_05_03_125452_create_product_option_heading_table.php │ ├── 2024_05_03_144843_create_product_option_table.php │ ├── 2024_05_16_152806_alter_webpage_table_add_featured_webpage_column.php │ ├── 2024_06_05_072541_create_product_enquiry_table.php │ ├── 2024_06_06_232617_create_webpage_question_table.php │ ├── 2024_06_21_071414_update_company_table_add_short_name_column.php │ ├── 2024_06_24_215640_create_user__user_group_table.php │ ├── 2024_06_25_121457_update_company_info_table_add_image_path_column.php │ ├── 2024_06_27_063635_create_webpage__webpage_cateogy___postpage.php │ ├── 2024_06_27_120924_create_webpage__team_table.php │ ├── 2024_06_30_061728_create_document_file__user_group_table.php │ ├── 2024_06_30_093310_create_url_link__user_group_table.php │ ├── 2024_07_18_174046_create_customer_comment_table.php │ ├── 2024_07_18_181823_create_customer_document_file.php │ ├── 2024_07_18_213816_create_educ_institution_table.php │ ├── 2024_07_19_135332_create_educ_institution_program_table.php │ ├── 2024_07_19_141905_create_educ_application_table.php │ ├── 2024_10_20_191407_update_users_table_add_last_login_column.php │ ├── 2024_10_24_222525_create_product_vendor_table.php │ ├── 2024_10_25_030517_update_product_table_add_product_vendor_column.php │ ├── 2024_12_25_141610_alter_todo_table_add_columns.php │ ├── 2025_03_18_095027_create_webpage__product_category_table.php │ └── 2025_04_24_112544_update_product_table_add_selling_price_unit.php └── seeders │ ├── AccountingSeeder.php │ ├── CmsNavMenuSeeder.php │ ├── CmsThemeSeeder.php │ ├── CompanySeeder.php │ ├── CustomerSeeder.php │ ├── DatabaseSeeder.php │ ├── PaymentTypesSeeder.php │ ├── ProductSeeder.php │ ├── SeatTableSeeder.php │ ├── TeamSeeder.php │ ├── UserSeeder.php │ └── WebpageSeeder.php ├── docker-compose.yml ├── lang ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── np.json ├── package-lock.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── custom-style.css ├── favicon.ico ├── fonts │ └── vendor │ │ └── font-awesome │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── index.php ├── js │ └── chart.js ├── mix-manifest.json ├── robots.txt ├── vendor │ ├── bootstrap │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── fontawesome-free │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── 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 │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── overlayScrollbars │ │ ├── css │ │ │ ├── OverlayScrollbars.css │ │ │ └── OverlayScrollbars.min.css │ │ └── js │ │ │ ├── OverlayScrollbars.js │ │ │ ├── OverlayScrollbars.min.js │ │ │ ├── jquery.overlayScrollbars.js │ │ │ └── jquery.overlayScrollbars.min.js │ └── popper │ │ ├── esm │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ └── popper.min.js.map │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ ├── popper.min.js.map │ │ └── umd │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.flow │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ └── popper.min.js.map └── web.config ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── components │ ├── alert-component.blade.php │ ├── base-component.blade.php │ ├── box-generic.blade.php │ ├── box-list.blade.php │ ├── card-box.blade.php │ ├── component-header.blade.php │ ├── create-box-component.blade.php │ ├── glance-card.blade.php │ ├── list-component.blade.php │ ├── list-delete-button-component.blade.php │ ├── list-dropdown-component.blade.php │ ├── list-edit-button-component.blade.php │ ├── list-view-button-component.blade.php │ ├── menu-bar-horizontal.blade.php │ ├── menu-item.blade.php │ ├── spinner-component.blade.php │ ├── table-row-component.blade.php │ ├── toolbar-button-component.blade.php │ ├── toolbar-classic-mob.blade.php │ ├── toolbar-classic.blade.php │ ├── toolbar-component.blade.php │ ├── toolbar-dropdown-component.blade.php │ ├── toolbar-dropdown-item-component.blade.php │ ├── transaction-create-component.blade.php │ └── transaction-main-info-component.blade.php │ ├── dashboard.blade.php │ ├── dashboard │ ├── accounting.blade.php │ ├── appointment.blade.php │ ├── bgc │ │ ├── organizing-committee.blade.php │ │ ├── quick-contacts.blade.php │ │ └── sponsors.blade.php │ ├── cafe-sale.blade.php │ ├── calendar-group.blade.php │ ├── calendar.blade.php │ ├── change-password.blade.php │ ├── cms │ │ ├── gallery.blade.php │ │ ├── nav-menu.blade.php │ │ ├── post.blade.php │ │ ├── theme.blade.php │ │ └── webpage.blade.php │ ├── company.blade.php │ ├── contact-form.blade.php │ ├── customer.blade.php │ ├── daybook.blade.php │ ├── document-file.blade.php │ ├── expense.blade.php │ ├── help.blade.php │ ├── institution.blade.php │ ├── inventory.blade.php │ ├── newsletter-subscription.blade.php │ ├── online-order.blade.php │ ├── print │ │ ├── sale-invoice.blade.php │ │ └── sale-quotation.blade.php │ ├── product-category.blade.php │ ├── product-question.blade.php │ ├── product-vendor.blade.php │ ├── product.blade.php │ ├── purchase.blade.php │ ├── report.blade.php │ ├── sale-invoice.blade.php │ ├── sale-quotation.blade.php │ ├── sale.blade.php │ ├── settings.blade.php │ ├── takeaway.blade.php │ ├── team.blade.php │ ├── testimonial.blade.php │ ├── theme.blade.php │ ├── todo.blade.php │ ├── url-link.blade.php │ ├── user-group.blade.php │ ├── user-profile.blade.php │ ├── users.blade.php │ ├── vacancy.blade.php │ ├── vat.blade.php │ ├── vendor.blade.php │ └── weekbook.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── illustrated-layout.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── layouts │ └── app.blade.php │ ├── livewire │ ├── accounting │ │ └── dashboard │ │ │ ├── accounting-account-create.blade.php │ │ │ ├── accounting-account-list.blade.php │ │ │ ├── accounting-account-type-create.blade.php │ │ │ ├── accounting-account-type-list.blade.php │ │ │ ├── accounting-balance-sheet.blade.php │ │ │ ├── accounting-cash-flow.blade.php │ │ │ ├── accounting-component.blade.php │ │ │ ├── accounting-income-statement.blade.php │ │ │ ├── accounting-journal-book.blade.php │ │ │ ├── accounting-ledger-book.blade.php │ │ │ ├── accounting-trial-balance-component.blade.php │ │ │ ├── journal-entry-list.blade.php │ │ │ └── ledger-display.blade.php │ ├── app-info │ │ └── dashboard │ │ │ ├── lv-company-info.blade.php │ │ │ ├── lv-package-info.blade.php │ │ │ └── lv-package-welcome.blade.php │ ├── appointment │ │ ├── dashboard │ │ │ ├── appointment-component.blade.php │ │ │ ├── appointment-display.blade.php │ │ │ └── appointment-list.blade.php │ │ └── website │ │ │ └── appointment-create.blade.php │ ├── cafe-sale │ │ └── dashboard │ │ │ ├── cafe-sale-component.blade.php │ │ │ ├── seat-table-create.blade.php │ │ │ ├── seat-table-display.blade.php │ │ │ ├── seat-table-list-display.blade.php │ │ │ ├── seat-table-list.blade.php │ │ │ └── seat-table-work-display.blade.php │ ├── calendar │ │ ├── dashboard │ │ │ ├── calendar-component.blade.php │ │ │ ├── calendar-date-picker-nepali.blade.php │ │ │ ├── calendar-event-create.blade.php │ │ │ ├── calendar-event-display.blade.php │ │ │ ├── calendar-event-edit-date.blade.php │ │ │ ├── calendar-event-edit-is-holiday.blade.php │ │ │ ├── calendar-event-edit-name.blade.php │ │ │ ├── calendar-glance-component.blade.php │ │ │ ├── calendar-group-component.blade.php │ │ │ ├── calendar-group-create.blade.php │ │ │ ├── calendar-group-display.blade.php │ │ │ └── calendar-group-list.blade.php │ │ └── website │ │ │ ├── calendar-component.blade.php │ │ │ ├── today-display.blade.php │ │ │ └── upcoming-events-list.blade.php │ ├── chart │ │ └── dashboard │ │ │ ├── chart-expense-by-category.blade.php │ │ │ ├── chart-sale-by-category.blade.php │ │ │ └── chart-week-sales.blade.php │ ├── cms │ │ ├── dashboard │ │ │ ├── cms-glance.blade.php │ │ │ ├── gallery-add-image.blade.php │ │ │ ├── gallery-component.blade.php │ │ │ ├── gallery-create.blade.php │ │ │ ├── gallery-delete-confirm.blade.php │ │ │ ├── gallery-display.blade.php │ │ │ ├── gallery-list.blade.php │ │ │ ├── gallery-update-name.blade.php │ │ │ ├── gallery-update.blade.php │ │ │ ├── media-select-image-component.blade.php │ │ │ ├── nav-menu-component.blade.php │ │ │ ├── nav-menu-create.blade.php │ │ │ ├── nav-menu-display-nav-menu-dropdown-item-create.blade.php │ │ │ ├── nav-menu-display-nav-menu-item-create.blade.php │ │ │ ├── nav-menu-display.blade.php │ │ │ ├── nav-menu-list.blade.php │ │ │ ├── notice-glance-component.blade.php │ │ │ ├── post-category-create.blade.php │ │ │ ├── post-component.blade.php │ │ │ ├── post-list.blade.php │ │ │ ├── theme-component.blade.php │ │ │ ├── webpage-add-webpage-category.blade.php │ │ │ ├── webpage-component.blade.php │ │ │ ├── webpage-content-create-heading.blade.php │ │ │ ├── webpage-content-create-image.blade.php │ │ │ ├── webpage-content-create-media-and-text.blade.php │ │ │ ├── webpage-content-create-paragraph.blade.php │ │ │ ├── webpage-content-create │ │ │ │ ├── gallery.blade.php │ │ │ │ ├── row.blade.php │ │ │ │ └── youtube-video.blade.php │ │ │ ├── webpage-content-display.blade.php │ │ │ ├── webpage-content-edit-css.blade.php │ │ │ ├── webpage-content-edit.blade.php │ │ │ ├── webpage-create.blade.php │ │ │ ├── webpage-display-webpage-content-create.blade.php │ │ │ ├── webpage-display.blade.php │ │ │ ├── webpage-edit-featured-image.blade.php │ │ │ ├── webpage-edit-product-category-page.blade.php │ │ │ ├── webpage-edit-team-teampage.blade.php │ │ │ ├── webpage-edit-visibility.blade.php │ │ │ ├── webpage-edit-webpage-category-postpage.blade.php │ │ │ └── webpage-list.blade.php │ │ └── website │ │ │ ├── contact-component.blade.php │ │ │ ├── create-webpage-question.blade.php │ │ │ ├── gallery-display.blade.php │ │ │ ├── latest-post-list-grid.blade.php │ │ │ ├── latest-post-list.blade.php │ │ │ ├── post-list.blade.php │ │ │ ├── related-posts.blade.php │ │ │ └── webpage-display.blade.php │ ├── company │ │ └── dashboard │ │ │ ├── brief-description-create.blade.php │ │ │ ├── brief-description-edit.blade.php │ │ │ ├── company-component.blade.php │ │ │ ├── company-info-component.blade.php │ │ │ ├── company-info-create.blade.php │ │ │ ├── company-info-display.blade.php │ │ │ ├── company-info-update.blade.php │ │ │ └── google-map-share-link-create.blade.php │ ├── contact-form │ │ └── dashboard │ │ │ ├── contact-form-component.blade.php │ │ │ ├── contact-message-create.blade.php │ │ │ ├── contact-message-display.blade.php │ │ │ ├── contact-message-glance-component.blade.php │ │ │ └── contact-message-list.blade.php │ ├── core │ │ └── dashboard │ │ │ ├── core-expense-display.blade.php │ │ │ ├── core-purchase-display.blade.php │ │ │ ├── core-purchase-list.blade.php │ │ │ ├── core-sale-invoice-display.blade.php │ │ │ └── core-sale-quotation-display.blade.php │ ├── customer │ │ └── dashboard │ │ │ ├── customer-comment-create.blade.php │ │ │ ├── customer-component.blade.php │ │ │ ├── customer-create.blade.php │ │ │ ├── customer-detail-2.blade.php │ │ │ ├── customer-detail-bak-1.blade.php │ │ │ ├── customer-detail.blade.php │ │ │ ├── customer-document-file-create.blade.php │ │ │ ├── customer-edit-email.blade.php │ │ │ ├── customer-edit-name.blade.php │ │ │ ├── customer-edit-pan.blade.php │ │ │ ├── customer-edit-phone.blade.php │ │ │ ├── customer-invoice-payment-create.blade.php │ │ │ ├── customer-ledger.blade.php │ │ │ ├── customer-list.blade.php │ │ │ ├── customer-payment-create.blade.php │ │ │ ├── customer-sale-list.blade.php │ │ │ └── customer-search.blade.php │ ├── dashboard │ │ ├── app-left-menu.blade.php │ │ ├── carousal-component.blade.php │ │ ├── misc-glance.blade.php │ │ └── settings │ │ │ └── login-page-setting.blade.php │ ├── document-file │ │ ├── dashboard │ │ │ ├── document-file-component.blade.php │ │ │ ├── document-file-create.blade.php │ │ │ ├── document-file-display-pdf.blade.php │ │ │ ├── document-file-display.blade.php │ │ │ ├── document-file-edit-user-group.blade.php │ │ │ └── document-file-list.blade.php │ │ └── website │ │ │ └── document-file-list.blade.php │ ├── ecomm-website │ │ ├── checkout.blade.php │ │ ├── hero-order.blade.php │ │ ├── home-component.blade.php │ │ ├── home-search-result.blade.php │ │ ├── menu.blade.php │ │ ├── product-category-product-list-l1.blade.php │ │ ├── product-category-product-list.blade.php │ │ ├── product-category-random-product-list.blade.php │ │ ├── product-display.blade.php │ │ ├── product-list-display.blade.php │ │ ├── product-order.blade.php │ │ ├── shopping-cart-badge.blade.php │ │ ├── subscribe-us.blade.php │ │ ├── top-menu.blade.php │ │ └── website │ │ │ └── create-product-enquiry.blade.php │ ├── educ │ │ ├── application │ │ │ └── dashboard │ │ │ │ └── application-create.blade.php │ │ └── institution │ │ │ └── dashboard │ │ │ ├── institution-component.blade.php │ │ │ ├── institution-create.blade.php │ │ │ ├── institution-display.blade.php │ │ │ ├── institution-list.blade.php │ │ │ └── institution-program-create.blade.php │ ├── expense │ │ └── dashboard │ │ │ ├── expense-category-create.blade.php │ │ │ ├── expense-category-list.blade.php │ │ │ ├── expense-component.blade.php │ │ │ ├── expense-create.blade.php │ │ │ ├── expense-display.blade.php │ │ │ ├── expense-list-expense-delete-confirm.blade.php │ │ │ ├── expense-list.blade.php │ │ │ ├── expense-report.blade.php │ │ │ └── expense-work-make-payment.blade.php │ ├── flash-card │ │ ├── flash-card-current-bookings.blade.php │ │ ├── flash-card-sale-invoice.blade.php │ │ ├── flash-card-total-bookings-today.blade.php │ │ ├── flash-card-total-expense-today.blade.php │ │ ├── flash-card-total-purchase-today.blade.php │ │ ├── flash-card-total-sales-today.blade.php │ │ └── flash-card-total-takeaways-today.blade.php │ ├── inventory │ │ ├── inventory-component.blade.php │ │ └── inventory-product-detail.blade.php │ ├── misc │ │ ├── clock-display-component.blade.php │ │ ├── counter-dash-component.blade.php │ │ ├── help-component.blade.php │ │ ├── recent-sale-invoices-component.blade.php │ │ ├── settings-component.blade.php │ │ ├── support-component.blade.php │ │ ├── transactions-navigator.blade.php │ │ └── vat-return.blade.php │ ├── newsletter-subscription │ │ └── dashboard │ │ │ ├── newsletter-subscription-component.blade.php │ │ │ ├── newsletter-subscription-display.blade.php │ │ │ └── newsletter-subscription-list.blade.php │ ├── notice │ │ └── dashboard │ │ │ └── latest-notice-list.blade.php │ ├── online-order │ │ └── dashboard │ │ │ ├── online-order-component.blade.php │ │ │ ├── online-order-counter.blade.php │ │ │ ├── online-order-display.blade.php │ │ │ ├── online-order-glance.blade.php │ │ │ ├── online-order-list.blade.php │ │ │ └── online-order-search.blade.php │ ├── product-category │ │ └── dashboard │ │ │ ├── product-category-component.blade.php │ │ │ ├── product-category-create.blade.php │ │ │ ├── product-category-display.blade.php │ │ │ ├── product-category-edit-image.blade.php │ │ │ ├── product-category-edit-name.blade.php │ │ │ ├── product-category-list.blade.php │ │ │ ├── product-category-product-list-l1.blade.php │ │ │ └── product-category-search.blade.php │ ├── product-vendor │ │ └── dashboard │ │ │ ├── product-vendor-component.blade.php │ │ │ ├── product-vendor-create.blade.php │ │ │ ├── product-vendor-display.blade.php │ │ │ ├── product-vendor-list.blade.php │ │ │ └── product-vendor-search.blade.php │ ├── product │ │ ├── dashboard │ │ │ ├── product-answer-create.blade.php │ │ │ ├── product-component.blade.php │ │ │ ├── product-create-from-csv.blade.php │ │ │ ├── product-create.blade.php │ │ │ ├── product-display.blade.php │ │ │ ├── product-edit-add-product-feature-heading.blade.php │ │ │ ├── product-edit-add-product-feature.blade.php │ │ │ ├── product-edit-add-product-option-heading.blade.php │ │ │ ├── product-edit-add-product-option.blade.php │ │ │ ├── product-edit-add-product-specification-heading.blade.php │ │ │ ├── product-edit-add-product-specification.blade.php │ │ │ ├── product-edit-category.blade.php │ │ │ ├── product-edit-description.blade.php │ │ │ ├── product-edit-image.blade.php │ │ │ ├── product-edit-name.blade.php │ │ │ ├── product-edit-price-unit.blade.php │ │ │ ├── product-edit-price.blade.php │ │ │ ├── product-edit-video-link.blade.php │ │ │ ├── product-feature-edit.blade.php │ │ │ ├── product-gallery-add-images.blade.php │ │ │ ├── product-gallery-create.blade.php │ │ │ ├── product-gallery-display.blade.php │ │ │ ├── product-list.blade.php │ │ │ ├── product-question-component.blade.php │ │ │ ├── product-question-display.blade.php │ │ │ ├── product-question-list.blade.php │ │ │ ├── product-search.blade.php │ │ │ ├── product-specification-keyword-edit.blade.php │ │ │ ├── product-specification-value-edit.blade.php │ │ │ └── product-vendor-link.blade.php │ │ └── website │ │ │ ├── featured-product-list.blade.php │ │ │ ├── product-filter.blade.php │ │ │ ├── product-listing-display.blade.php │ │ │ ├── product-question-create.blade.php │ │ │ └── product-review-create.blade.php │ ├── purchase │ │ └── dashboard │ │ │ ├── purchase-add-item.blade.php │ │ │ ├── purchase-component.blade.php │ │ │ ├── purchase-create-confirm-purchase-item-delete.blade.php │ │ │ ├── purchase-create.blade.php │ │ │ ├── purchase-display.blade.php │ │ │ ├── purchase-list-purchase-delete-confirm.blade.php │ │ │ ├── purchase-list.blade.php │ │ │ ├── purchase-make-payment.blade.php │ │ │ └── purchase-search.blade.php │ ├── record-book │ │ └── dashboard │ │ │ ├── daybook-booking-display.blade.php │ │ │ ├── daybook-component.blade.php │ │ │ ├── daybook-sale-invoice-display-show-payments.blade.php │ │ │ ├── daybook-sale-invoice-display.blade.php │ │ │ ├── viewbook-component.blade.php │ │ │ └── weekbook-component.blade.php │ ├── report │ │ └── dashboard │ │ │ ├── report-component.blade.php │ │ │ ├── report-product-purchase-count.blade.php │ │ │ ├── report-product-sales-count.blade.php │ │ │ ├── report-transaction-component.blade.php │ │ │ └── table-top-selling-products-day.blade.php │ ├── sale-invoice │ │ └── dashboard │ │ │ ├── sale-invoice-component.blade.php │ │ │ ├── sale-invoice-create.blade.php │ │ │ ├── sale-invoice-detail.blade.php │ │ │ ├── sale-invoice-list.blade.php │ │ │ ├── sale-invoice-search.blade.php │ │ │ ├── sale-invoice-work-add-item.blade.php │ │ │ ├── sale-invoice-work-confirm-sale-invoice-item-delete.blade.php │ │ │ ├── sale-invoice-work-make-payment.blade.php │ │ │ └── sale-invoice-work.blade.php │ ├── sale-quotation │ │ └── dashboard │ │ │ ├── sale-quotation-create.blade.php │ │ │ ├── sale-quotation-list.blade.php │ │ │ ├── sale-quotation-search.blade.php │ │ │ ├── sale-quotation-work-add-item.blade.php │ │ │ ├── sale-quotation-work-confirm-sale-quotation-item-delete.blade.php │ │ │ └── sale-quotation-work.blade.php │ ├── seat-table │ │ └── dashboard │ │ │ └── seat-table-settings-component.blade.php │ ├── shop │ │ └── dashboard │ │ │ ├── product-glance.blade.php │ │ │ ├── sale-quotation-component.blade.php │ │ │ └── shop-glance.blade.php │ ├── takeaway │ │ ├── takeaway-component.blade.php │ │ ├── takeaway-create.blade.php │ │ ├── takeaway-list-confirm-delete.blade.php │ │ └── takeaway-list.blade.php │ ├── team │ │ └── dashboard │ │ │ ├── team-component.blade.php │ │ │ ├── team-create.blade.php │ │ │ ├── team-display-team-member-create.blade.php │ │ │ ├── team-display-team-member-update.blade.php │ │ │ ├── team-display-team-members-create-from-csv.blade.php │ │ │ ├── team-display.blade.php │ │ │ ├── team-list.blade.php │ │ │ ├── team-member-add-availability.blade.php │ │ │ ├── team-member-appointment-list.blade.php │ │ │ ├── team-member-appointment-setting.blade.php │ │ │ ├── team-member-edit-email.blade.php │ │ │ ├── team-member-edit-name.blade.php │ │ │ ├── team-member-edit-phone.blade.php │ │ │ ├── team-member-edit-picture.blade.php │ │ │ └── team-update.blade.php │ ├── testimonial │ │ ├── dashboard │ │ │ ├── testimonial-component.blade.php │ │ │ ├── testimonial-display.blade.php │ │ │ └── testimonial-list.blade.php │ │ └── website │ │ │ ├── testimonial-create.blade.php │ │ │ └── testimonial-list.blade.php │ ├── todo │ │ └── dashboard │ │ │ ├── todo-component.blade.php │ │ │ ├── todo-create.blade.php │ │ │ ├── todo-display.blade.php │ │ │ ├── todo-edit-assigned-to.blade.php │ │ │ ├── todo-edit-description.blade.php │ │ │ ├── todo-edit-due-date.blade.php │ │ │ ├── todo-edit-priority.blade.php │ │ │ ├── todo-edit-status.blade.php │ │ │ ├── todo-edit-title.blade.php │ │ │ ├── todo-glance.blade.php │ │ │ ├── todo-list-confirm-delete.blade.php │ │ │ └── todo-list.blade.php │ ├── url-link │ │ └── dashboard │ │ │ ├── url-link-component.blade.php │ │ │ ├── url-link-create.blade.php │ │ │ ├── url-link-display.blade.php │ │ │ ├── url-link-edit-user-group.blade.php │ │ │ └── url-link-list.blade.php │ ├── user-group │ │ └── dashboard │ │ │ ├── user-group-component.blade.php │ │ │ ├── user-group-create.blade.php │ │ │ ├── user-group-display.blade.php │ │ │ └── user-group-list.blade.php │ ├── user-profile │ │ └── dashboard │ │ │ └── change-password-component.blade.php │ ├── user │ │ ├── dashboard │ │ │ ├── add-user-to-group.blade.php │ │ │ ├── user-component.blade.php │ │ │ ├── user-create.blade.php │ │ │ ├── user-display.blade.php │ │ │ ├── user-list.blade.php │ │ │ └── user-profile-display.blade.php │ │ └── website │ │ │ └── signup.blade.php │ ├── vacancy │ │ ├── dashboard │ │ │ ├── vacancy-component.blade.php │ │ │ ├── vacancy-create.blade.php │ │ │ ├── vacancy-display.blade.php │ │ │ ├── vacancy-edit-description.blade.php │ │ │ ├── vacancy-edit-title.blade.php │ │ │ └── vacancy-list.blade.php │ │ └── website │ │ │ ├── vacancy-list.blade.php │ │ │ └── vacancy-view.blade.php │ ├── vendor │ │ └── dashboard │ │ │ ├── vendor-component.blade.php │ │ │ ├── vendor-create.blade.php │ │ │ ├── vendor-display-settle.blade.php │ │ │ ├── vendor-display.blade.php │ │ │ ├── vendor-edit-email.blade.php │ │ │ ├── vendor-edit-name.blade.php │ │ │ ├── vendor-edit-pan.blade.php │ │ │ ├── vendor-edit-phone.blade.php │ │ │ ├── vendor-list.blade.php │ │ │ ├── vendor-purchase-payment-create.blade.php │ │ │ └── vendor-search.blade.php │ └── webpage │ │ └── dashboard │ │ ├── post-search.blade.php │ │ └── webpage-search.blade.php │ ├── mail │ └── newsletter-subscription-notification.blade.php │ ├── partials │ ├── button-cancel.blade.php │ ├── button-general-block.blade.php │ ├── button-general.blade.php │ ├── button-store.blade.php │ ├── button-update.blade.php │ ├── cms │ │ ├── carousal.blade.php │ │ ├── client-testimonials.blade.php │ │ ├── footer-new.blade.php │ │ ├── header.blade.php │ │ ├── nav-menu-desktop.blade.php │ │ ├── nav-menu-mobile.blade.php │ │ ├── top-menu-button.blade.php │ │ ├── top-menu-dropdown.blade.php │ │ ├── top-menu.blade.php │ │ └── website │ │ │ ├── coming-soon-page.blade.php │ │ │ ├── company-info.blade.php │ │ │ ├── company-not-set.blade.php │ │ │ ├── featured-image-page-announcer.blade.php │ │ │ ├── footer-one.blade.php │ │ │ ├── footer │ │ │ ├── footer-default.blade.php │ │ │ └── footer-second.blade.php │ │ │ ├── header │ │ │ └── header-default.blade.php │ │ │ ├── home-page-not-set-yet.blade.php │ │ │ ├── nav-menu │ │ │ └── nav-menu-default.blade.php │ │ │ ├── newest-notice-flasher-modal.blade.php │ │ │ ├── newest-notice-flasher.blade.php │ │ │ ├── no-featured-image-page-announcer.blade.php │ │ │ ├── page-announcer.blade.php │ │ │ └── webpage-display-special-pages.blade.php │ ├── dashboard │ │ ├── app-footer.blade.php │ │ ├── app-left-menu-button-lw.blade.php │ │ ├── app-left-menu-button.blade.php │ │ ├── app-left-menu.blade.php │ │ ├── app-top-menu-button.blade.php │ │ ├── app-top-menu-dropdown.blade.php │ │ ├── app-top-menu-ecs-dropdown.blade.php │ │ ├── app-top-menu-misc-dropdown.blade.php │ │ ├── app-top-menu-school-dropdown.blade.php │ │ ├── app-top-menu-user-dropdown.blade.php │ │ ├── app-top-menu.blade.php │ │ ├── confirm-delete-modal.blade.php │ │ ├── daybook-expense.blade.php │ │ ├── daybook-purchase.blade.php │ │ ├── expense-create-add-item.blade.php │ │ ├── expense-create-amount.blade.php │ │ ├── expense-create-main.blade.php │ │ ├── expense-create-make-payment.blade.php │ │ ├── login-left.blade.php │ │ ├── mobile-dashboard-main-links.blade.php │ │ ├── mobile-top-menu.blade.php │ │ ├── pkg-branding.blade.php │ │ ├── sale-invoice-work-options.blade.php │ │ ├── sale-quotation-work-options.blade.php │ │ ├── spinner-button.blade.php │ │ └── tool-bar-button-pill.blade.php │ ├── ecomm-website │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── headers-header.blade.php │ │ ├── main-flier.blade.php │ │ ├── main-hero.blade.php │ │ └── top-menu.blade.php │ ├── flash-message-modal.blade.php │ ├── flash-message.blade.php │ ├── misc │ │ ├── dashboard-vendor-announcement.blade.php │ │ ├── flash-card-simple.blade.php │ │ └── glance-card.blade.php │ ├── mob │ │ ├── add-item-form.blade.php │ │ ├── purchase-add-item-form.blade.php │ │ └── takeaway-add-item-form.blade.php │ ├── package │ │ └── package-intro.blade.php │ ├── product │ │ └── product-display │ │ │ ├── additional-settings.blade.php │ │ │ ├── creation-update-info.blade.php │ │ │ ├── delete-product.blade.php │ │ │ ├── main-info.blade.php │ │ │ ├── product-features.blade.php │ │ │ ├── product-gallery.blade.php │ │ │ ├── product-options.blade.php │ │ │ ├── product-specifications.blade.php │ │ │ ├── product-vendor.blade.php │ │ │ ├── product-video.blade.php │ │ │ ├── question-and-answer.blade.php │ │ │ ├── social-count.blade.php │ │ │ └── stock-info.blade.php │ ├── school │ │ └── school-quick-links-display.blade.php │ ├── spinner-border.blade.php │ ├── team │ │ ├── person-display-fe.blade.php │ │ ├── person-display.blade.php │ │ ├── team-block-display.blade.php │ │ ├── team-display-fe.blade.php │ │ └── team-display.blade.php │ └── unused │ │ ├── flash-message.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── headers-header.blade.php │ │ ├── product-info.blade.php │ │ ├── quick-links.blade.php │ │ ├── top-menu.blade.php │ │ └── website-hero-para.blade.php │ └── website │ ├── appointment │ └── book-appointment.blade.php │ ├── cafe-sale │ └── seat-table-view.blade.php │ ├── cms │ ├── base.blade.php │ ├── home.blade.php │ └── webpage.blade.php │ ├── ecommerce │ ├── base.blade.php │ ├── checkout.blade.php │ ├── home.blade.php │ ├── product-category-product-list.blade.php │ ├── product-search-results.blade.php │ └── product-view.blade.php │ ├── testimonial │ └── testimonial-create.blade.php │ ├── user │ ├── profile.blade.php │ └── signup.blade.php │ └── vacancy │ └── vacancy-view.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── screenshots ├── create-post-1.gif ├── create-webpage-1.gif ├── dashboard-screenshot-1.png ├── samarium-logo-1.png ├── screenshot-change-password-1.png ├── screenshot-customer-display-1.png ├── screenshot-daybook-1.png ├── screenshot-expense-display-finished-1.png ├── screenshot-expense-display-progress-1.png ├── screenshot-expense-list-1.png ├── screenshot-gif-product-1.gif ├── screenshot-login-1.png ├── screenshot-page-list-1.png ├── screenshot-post-list-1.png ├── screenshot-product-category-list-1.png ├── screenshot-product-list-1.png ├── screenshot-purchase-display-finished-1.png ├── screenshot-purchase-display-progress-1.png ├── screenshot-purchase-list-1.png ├── screenshot-sale-invoice-create-1.gif ├── screenshot-sale-invoice-display-finished-1.png ├── screenshot-sale-invoice-display-progress-1.png ├── screenshot-sale-invoice-list-1.png ├── screenshot-settings-1.png ├── screenshot-user-profile-1.png ├── screenshot-vendor-display-1.png ├── screenshot-website-homepage-1.png └── screenshot-weekbook-1.png ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ ├── .gitignore │ │ └── samarium-logo-1.png ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── Cms │ │ └── Dashboard │ │ │ ├── PostComponentTest.php │ │ │ ├── WebpageComponentTest.php │ │ │ └── WebpageCreateTest.php │ ├── CmsWebsiteTest.php │ ├── DashboardTest.php │ ├── EcommWebsiteTest.php │ ├── ExampleTest.php │ ├── Livewire │ │ ├── AccountingComponentTest.php │ │ ├── AppointmentComponentTest.php │ │ ├── CafeSaleComponentTest.php │ │ ├── CalendarComponentTest.php │ │ ├── CalendarGroupComponentTest.php │ │ ├── ChangePasswordComponentTest.php │ │ ├── CompanyComponentTest.php │ │ ├── ContactFormComponentTest.php │ │ ├── CustomerComponentTest.php │ │ ├── DaybookComponentTest.php │ │ ├── DocumentFileComponentTest.php │ │ ├── EcommWebsite │ │ │ └── SubscribeUsTest.php │ │ ├── ExpenseComponentTest.php │ │ ├── GalleryComponentTest.php │ │ ├── InventoryComponentTest.php │ │ ├── NavMenuComponentTest.php │ │ ├── NewsletterSubscriptionComponentTest.php │ │ ├── OnlineOrderComponentTest.php │ │ ├── PostComponentTest.php │ │ ├── ProductCategoryComponentTest.php │ │ ├── ProductComponentTest.php │ │ ├── ProductQuestionComponentTest.php │ │ ├── ProductVendorComponentTest.php │ │ ├── PurchaseComponentTest.php │ │ ├── ReportComponentTest.php │ │ ├── SaleInvoiceComponentTest.php │ │ ├── SaleQuotationComponentTest.php │ │ ├── TeamComponentTest.php │ │ ├── TestimonialComponentTest.php │ │ ├── ThemeComponentTest.php │ │ ├── TodoComponentTest.php │ │ ├── UrlLinkComponentTest.php │ │ ├── User │ │ │ ├── Dashboard │ │ │ │ └── UserProfileDisplayTest.php │ │ │ ├── UserComponentTest.php │ │ │ ├── UserCreateTest.php │ │ │ ├── UserDisplayTest.php │ │ │ ├── UserListTest.php │ │ │ └── Website │ │ │ │ └── SignupTest.php │ │ ├── VacancyComponentTest.php │ │ ├── VendorComponentTest.php │ │ ├── WebpageComponentTest.php │ │ └── WeekbookComponentTest.php │ ├── LoginTest.php │ ├── RegistrationTest.php │ ├── RouteTest.php │ ├── UriTest.php │ └── UserTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /vendor/ 3 | .env 4 | .env.backup 5 | .env.production 6 | .phpactor.json 7 | .phpunit.result.cache 8 | Homestead.json 9 | Homestead.yaml 10 | auth.json 11 | npm-debug.log 12 | yarn-error.log 13 | /.fleet 14 | /.idea 15 | /.vscode 16 | /stubs 17 | /phpunit/report 18 | /public/storage 19 | -------------------------------------------------------------------------------- /apache-config.conf: -------------------------------------------------------------------------------- 1 | 2 | DocumentRoot /var/www/html/public 3 | 4 | 5 | AllowOverride All 6 | Require all granted 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/ContactMessage.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard calendar view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.calendar'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/CmsPostController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard post view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.cms.post'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/CmsThemeController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard theme view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.cms.theme'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/CompanyController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard company view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.company'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard customer view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.customer'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the application dashboard view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/DaybookController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard daybook view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.daybook'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/ExpenseController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard expense view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.expense'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/HelpController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard help view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.help'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the home view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('home'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/InventoryController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard inventory view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.inventory'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/ProductController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard product view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.product'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/PurchaseController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard purchase view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.purchase'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/ReportController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard report view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.report'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/SeatTableController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard cafe sale view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.cafe-sale'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/SettingsController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard settings view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.settings'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/TeamController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard team view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.team'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/TodoController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard todo (tasks) view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.todo'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/UrlLinkController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard url link view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.url-link'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/UsersController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard users view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.users'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/VacancyController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard vacancy view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.vacancy'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/VatController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard vat view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.vat'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/VendorController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard vendor view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index(): View 26 | { 27 | return view('dashboard.vendor'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/WeekbookController.php: -------------------------------------------------------------------------------- 1 | middleware(['auth', 'verified', 'isAdmin',]); 18 | } 19 | 20 | /** 21 | * Show the dashboard weekbook view. 22 | * 23 | * @return \Illuminate\Contracts\Support\Renderable 24 | */ 25 | public function index() 26 | { 27 | return view('dashboard.weekbook'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- 1 | role == 'admin') { 20 | return $next($request); 21 | } else { 22 | return redirect()->back()->with('unauthorised', 'You are not authorized to access this page'); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | user->last_login_at = Carbon::now(); 26 | $event->user->save(); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Livewire/Accounting/Dashboard/AccountingAccountList.php: -------------------------------------------------------------------------------- 1 | abAccounts = AbAccount::all(); 17 | 18 | return view('livewire.accounting.dashboard.accounting-account-list'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Livewire/Accounting/Dashboard/AccountingAccountTypeList.php: -------------------------------------------------------------------------------- 1 | abAccountTypes = AbAccountType::all(); 16 | 17 | return view('livewire.accounting.dashboard.accounting-account-type-list'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Accounting/Dashboard/AccountingJournalBook.php: -------------------------------------------------------------------------------- 1 | abAccounts = AbAccount::all(); 18 | $this->company = Company::first(); 19 | 20 | return view('livewire.accounting.dashboard.accounting-trial-balance-component'); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Livewire/Accounting/Dashboard/JournalEntryList.php: -------------------------------------------------------------------------------- 1 | journalEntries = JournalEntry::all(); 16 | 17 | return view('livewire.accounting.dashboard.journal-entry-list'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Accounting/Dashboard/LedgerDisplay.php: -------------------------------------------------------------------------------- 1 | ledgerEntries = $this->abAccount->ledgerEntries; 18 | 19 | return view('livewire.accounting.dashboard.ledger-display'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Livewire/AppInfo/Dashboard/LvCompanyInfo.php: -------------------------------------------------------------------------------- 1 | company = Company::first(); 16 | 17 | return view('livewire.app-info.dashboard.lv-company-info'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/AppInfo/Dashboard/LvPackageInfo.php: -------------------------------------------------------------------------------- 1 | 'render', 16 | ]; 17 | 18 | public function render(): View 19 | { 20 | $this->seatTables = SeatTable::all(); 21 | 22 | return view('livewire.cafe-sale.dashboard.seat-table-list'); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Livewire/Calendar/Dashboard/CalendarGroupDisplay.php: -------------------------------------------------------------------------------- 1 | dispatch('calendarGroupDisplayCancelled'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Livewire/CarousalComponent.php: -------------------------------------------------------------------------------- 1 | gallery = Gallery::first(); 16 | 17 | return view('livewire.carousal-component'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Cms/Dashboard/CmsGlance.php: -------------------------------------------------------------------------------- 1 | webpageCount = Webpage::where('is_post', 'no')->get()->count(); 19 | $this->postCount = Webpage::where('is_post', 'yes')->get()->count(); 20 | $this->galleryCount = Gallery::all()->count(); 21 | 22 | return view('livewire.cms.dashboard.cms-glance'); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Livewire/Cms/Dashboard/GalleryDeleteConfirm.php: -------------------------------------------------------------------------------- 1 | validate([ 21 | 'name' => 'required', 22 | ]); 23 | 24 | CmsNavMenu::create($validatedData); 25 | 26 | $this->dispatch('cmsNavMenuAdded'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Livewire/Cms/Dashboard/NavMenuList.php: -------------------------------------------------------------------------------- 1 | cmsNavMenus = CmsNavMenu::all(); 16 | 17 | return view('livewire.cms.dashboard.nav-menu-list'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Cms/Dashboard/PostCategoryCreate.php: -------------------------------------------------------------------------------- 1 | validate([ 21 | 'name' => 'required', 22 | ]); 23 | 24 | WebpageCategory::create($validatedData); 25 | 26 | $this->dispatch('createPostCategoryCompleted'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Livewire/Cms/Website/GalleryDisplay.php: -------------------------------------------------------------------------------- 1 | galleries = Gallery::all(); 16 | 17 | return view('livewire.cms.website.gallery-display'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Cms/Website/NavMenu.php: -------------------------------------------------------------------------------- 1 | cmsNavMenu = CmsNavMenu::first(); 17 | 18 | $company = Company::first(); 19 | 20 | return view('livewire.cms.website.nav-menu') 21 | ->with('company', $company); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Livewire/Company/Dashboard/CompanyInfoComponent.php: -------------------------------------------------------------------------------- 1 | contactMessageCount = ContactMessage::count(); 17 | $this->newContactMessageCount = ContactMessage::where('status', 'new')->count(); 18 | 19 | return view('livewire.contact-form.dashboard.contact-message-glance-component'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Livewire/Core/Dashboard/CoreExpenseDisplay.php: -------------------------------------------------------------------------------- 1 | false, 16 | ]; 17 | 18 | public function render(): View 19 | { 20 | return view('livewire.core.dashboard.core-expense-display'); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Livewire/Core/Dashboard/CorePurchaseDisplay.php: -------------------------------------------------------------------------------- 1 | false, 19 | ]; 20 | 21 | public function render(): View 22 | { 23 | return view('livewire.core.dashboard.core-purchase-display'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Livewire/Customer/Dashboard/CustomerLedger.php: -------------------------------------------------------------------------------- 1 | saleInvoices = $this->customer->saleInvoices()->orderBy('sale_invoice_id', 'DESC')->get(); 16 | 17 | return view('livewire.customer.dashboard.customer-sale-list'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Dashboard/MiscGlance.php: -------------------------------------------------------------------------------- 1 | getAvailableFiles(); 15 | } 16 | 17 | public function render(): View 18 | { 19 | return view('livewire.dashboard.settings.login-page-setting'); 20 | } 21 | 22 | public function getAvailableFiles(): void 23 | { 24 | $dir = '../resources/views/collection/login/'; 25 | 26 | $this->availableFiles = scandir($dir); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Livewire/DocumentFile/Dashboard/DocumentFileDisplayPdf.php: -------------------------------------------------------------------------------- 1 | file('storage/' . $this->documentFile->file_path); 15 | 16 | // return view('livewire.document-file.dashboard.document-file-display-pdf'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Livewire/EcommWebsite/HomeSearchResult.php: -------------------------------------------------------------------------------- 1 | webpages = Webpage::all(); 16 | 17 | return view('livewire.ecomm-website.menu'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/EcommWebsite/ProductCategoryProductListL1.php: -------------------------------------------------------------------------------- 1 | false, 17 | ]; 18 | 19 | public function render(): View 20 | { 21 | return view('livewire.ecomm-website.product-category-product-list-l1'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Livewire/EcommWebsite/ProductCategoryRandomProductList.php: -------------------------------------------------------------------------------- 1 | paginate(1); 19 | 20 | return view('livewire.educ.institution.dashboard.institution-list') 21 | ->with('educInstitutions', $educInstitutions); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Livewire/Expense/Dashboard/ExpenseCategoryList.php: -------------------------------------------------------------------------------- 1 | expenseCategories = ExpenseCategory::all(); 16 | 17 | return view('livewire.expense.dashboard.expense-category-list'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Expense/Dashboard/ExpenseDisplay.php: -------------------------------------------------------------------------------- 1 | saleInvoices = SaleInvoice::orderBy('sale_invoice_id', 'desc')->limit(5)->get(); 16 | 17 | return view('livewire.misc.recent-sale-invoices-component'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Misc/SupportComponent.php: -------------------------------------------------------------------------------- 1 | false, 15 | 'list' => false, 16 | 'display' => false, 17 | ]; 18 | 19 | public function render(): View 20 | { 21 | return view('livewire.misc.support-component'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Livewire/NewsletterSubscription/Dashboard/NewsletterSubscriptionDisplay.php: -------------------------------------------------------------------------------- 1 | false, 17 | ]; 18 | 19 | public function render(): View 20 | { 21 | return view('livewire.newsletter-subscription.dashboard.newsletter-subscription-display'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/Livewire/OnlineOrder/Dashboard/OnlineOrderCounter.php: -------------------------------------------------------------------------------- 1 | get(); 16 | 17 | $this->newOrderCount = count($newOrders); 18 | 19 | return view('livewire.online-order.dashboard.online-order-counter'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Livewire/OnlineOrder/Dashboard/OnlineOrderGlance.php: -------------------------------------------------------------------------------- 1 | onlineOrderCount = WebsiteOrder::count(); 17 | $this->newOnlineOrderCount = WebsiteOrder::where('status', 'new')->count(); 18 | 19 | return view('livewire.online-order.dashboard.online-order-glance'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Livewire/OnlineOrder/Dashboard/OnlineOrderSearch.php: -------------------------------------------------------------------------------- 1 | featuredProducts = Product::where('featured_product', 'yes')->limit(10)->get(); 15 | 16 | return view('livewire.product.website.featured-product-list'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Livewire/Product/Website/ProductListingDisplay.php: -------------------------------------------------------------------------------- 1 | productSpecifications()->where('spec_heading', 'city')->first()) { 20 | }; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Livewire/ProductCategory/Dashboard/ProductCategoryProductListL1.php: -------------------------------------------------------------------------------- 1 | false, 15 | ]; 16 | 17 | public function render(): View 18 | { 19 | return view('livewire.product-category.dashboard.product-category-product-list-l1'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Livewire/ProductVendor/Dashboard/.ProductVendorSearch.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/app/Livewire/ProductVendor/Dashboard/.ProductVendorSearch.php.swp -------------------------------------------------------------------------------- /app/Livewire/ProductVendor/Dashboard/ProductVendorDisplay.php: -------------------------------------------------------------------------------- 1 | seatTableBooking = $seatTableBooking; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Livewire/RecordBook/Dashboard/DaybookSaleInvoiceDisplayShowPayments.php: -------------------------------------------------------------------------------- 1 | productCount = Product::all()->count(); 18 | $this->productCategoryCount = ProductCategory::all()->count(); 19 | 20 | return view('livewire.shop.dashboard.product-glance'); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Livewire/Team/Dashboard/TeamMemberAppointmentList.php: -------------------------------------------------------------------------------- 1 | teamMemberAppointments = $this->teamMember->appointments; 17 | 18 | return view('livewire.team.dashboard.team-member-appointment-list'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Livewire/Testimonial/Dashboard/TestimonialDisplay.php: -------------------------------------------------------------------------------- 1 | testimonials = Testimonial::all(); 16 | 17 | return view('livewire.testimonial.website.testimonial-list'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Todo/Dashboard/TodoGlance.php: -------------------------------------------------------------------------------- 1 | totalTodo = Todo::count(); 17 | $this->todos = Todo::orderBy('todo_id', 'desc')->limit(5)->get(); 18 | 19 | return view('livewire.todo.dashboard.todo-glance'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Livewire/Todo/Dashboard/TodoListConfirmDelete.php: -------------------------------------------------------------------------------- 1 | user = Auth::user(); 17 | 18 | return view('livewire.user.dashboard.user-profile-display'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Livewire/UserGroup/Dashboard/UserGroupDisplay.php: -------------------------------------------------------------------------------- 1 | false, 17 | 'updateDescriptionMode' => false, 18 | ]; 19 | 20 | public function render(): View 21 | { 22 | return view('livewire.user-group.dashboard.user-group-display'); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Livewire/Vacancy/Website/VacancyList.php: -------------------------------------------------------------------------------- 1 | vacancies = Vacancy::all(); 16 | 17 | return view('livewire.vacancy.website.vacancy-list'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Livewire/Vacancy/Website/VacancyView.php: -------------------------------------------------------------------------------- 1 | role === 'admin' || $user->role !== 'admin') { 16 | return false; 17 | } 18 | 19 | return true; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | title = $title; 19 | } 20 | 21 | /** 22 | * Get the view / contents that represent the component. 23 | * 24 | * @return \Illuminate\View\View|string 25 | */ 26 | public function render() 27 | { 28 | return view('components.box-generic'); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/View/Components/CreateBoxComponent.php: -------------------------------------------------------------------------------- 1 | title = $title; 19 | } 20 | 21 | /** 22 | * Get the view / contents that represent the component. 23 | * 24 | * @return \Illuminate\View\View|string 25 | */ 26 | public function render() 27 | { 28 | return view('components.create-box-component'); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/View/Components/MenuBarHorizontal.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | class NewsletterSubscriptionFactory extends Factory 11 | { 12 | /** 13 | * Define the model's default state. 14 | * 15 | * @return array 16 | */ 17 | public function definition(): array 18 | { 19 | return [ 20 | 'email' => fake()->email(), 21 | 'status' => 'active' 22 | ]; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /database/migrations/.2022_02_07_133146_create_sale_payment_table.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/database/migrations/.2022_02_07_133146_create_sale_payment_table.php.swp -------------------------------------------------------------------------------- /database/seeders/SeatTableSeeder.php: -------------------------------------------------------------------------------- 1 | insert([ 21 | 'name' => 'Table ' . $i, 22 | 23 | 'created_at' => Carbon::now(), 24 | 'updated_at' => Carbon::now(), 25 | ]); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /database/seeders/TeamSeeder.php: -------------------------------------------------------------------------------- 1 | insert([ 18 | 'name' => 'Quick contacts', 19 | 'created_at' => Carbon::now(), 20 | 'updated_at' => Carbon::now(), 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /lang/np.json: -------------------------------------------------------------------------------- 1 | { 2 | "Login": "लगइन" 3 | } 4 | -------------------------------------------------------------------------------- /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/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/fonts/vendor/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/fonts/vendor/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/vendor/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/public/vendor/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * First we will load all of this project's JavaScript dependencies which 3 | * includes js libraries. It is a great starting point when building 4 | * robust, powerful web applications using Laravel. 5 | */ 6 | 7 | require('./bootstrap'); 8 | -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: 'Nunito', sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | 9 | // Colors 10 | $blue: #3490dc; 11 | $indigo: #6574cd; 12 | $purple: #9561e2; 13 | $pink: #f66d9b; 14 | $red: #e3342f; 15 | $orange: #f6993f; 16 | $yellow: #ffed4a; 17 | $green: #38c172; 18 | $teal: #4dc0b5; 19 | $cyan: #6cb2eb; 20 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import '~bootstrap/scss/bootstrap'; 9 | 10 | // Fontawesome 11 | @import "node_modules/font-awesome/scss/font-awesome.scss"; 12 | -------------------------------------------------------------------------------- /resources/views/components/alert-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 8 |
9 | -------------------------------------------------------------------------------- /resources/views/components/base-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | {{-- 4 | | 5 | | Toolbar. 6 | | 7 | --}} 8 | 9 | 10 | {{ $toolbar }} 11 | 12 | 13 | 14 | {{-- 15 | | 16 | | Flash message div. 17 | | 18 | --}} 19 | 20 | @if (session()->has('message')) 21 | @include ('partials.flash-message', ['message' => session('message'),]) 22 | @endif 23 | 24 | 25 | {{-- 26 | | 27 | | Component main content slot. 28 | | 29 | --}} 30 | 31 | {{ $slot }} 32 | 33 |
34 | -------------------------------------------------------------------------------- /resources/views/components/box-generic.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | {{ $title }} 5 |

6 | 7 |
8 |
9 | Loading... 10 |
11 | Loading ... 12 |
13 | 14 |
15 |
16 | {{ $slot }} 17 |
18 |
19 | -------------------------------------------------------------------------------- /resources/views/components/box-list.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{ $title }}

4 |
5 | 6 |
7 | {{ $slot }} 8 |
9 |
10 | -------------------------------------------------------------------------------- /resources/views/components/card-box.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{ $title }} 6 |
7 |
8 | 9 |
10 |
11 |
12 | {{ $number }} 13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /resources/views/components/component-header.blade.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | {{ $slot }} 4 |

5 |
6 | -------------------------------------------------------------------------------- /resources/views/components/create-box-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

5 | {{ $title }} 6 |

7 |
8 |
9 | {{ $slot }} 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /resources/views/components/list-delete-button-component.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /resources/views/components/list-dropdown-component.blade.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /resources/views/components/list-edit-button-component.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /resources/views/components/list-view-button-component.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /resources/views/components/menu-bar-horizontal.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ $slot }} 3 | 4 | {{-- 5 | | 6 | | Clear Mode button 7 | | 8 | --}} 9 |
10 |
11 | 14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /resources/views/components/menu-item.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 6 |
7 | -------------------------------------------------------------------------------- /resources/views/components/spinner-component.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/views/components/table-row-component.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $slot }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/components/toolbar-button-component.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/components/toolbar-classic-mob.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ $slot }} 3 |
4 | -------------------------------------------------------------------------------- /resources/views/components/toolbar-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{-- Toolbar info --}} 3 |
4 |
5 | {{ $toolbarInfo }} 6 |
7 |
8 | 9 | {{-- Toolbar buttons --}} 10 |
11 |
12 | {{ $toolbarButtons }} 13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /resources/views/components/toolbar-dropdown-component.blade.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /resources/views/components/toolbar-dropdown-item-component.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $slot }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/components/transaction-create-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ $topToolbar }} 4 |
5 |
6 |
7 |
8 | {{ $transactionMainInfo }} 9 |
10 |
11 | {{ $transactionAddItem }} 12 |
13 |
14 | {{ $transactionItemList }} 15 |
16 |
17 |
18 |
19 | {{ $transactionTotalBreakdown }} 20 |
21 |
22 | {{ $transactionPayment }} 23 |
24 |
25 |
26 | {{ $slot }} 27 |
28 | -------------------------------------------------------------------------------- /resources/views/dashboard/accounting.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('accounting.dashboard.accounting-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/appointment.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('appointment.dashboard.appointment-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/bgc/organizing-committee.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @if (\App\Team::where('name', 'Organizing Committee')->first()) 4 | @livewire ('team.team-display', ['team' => \App\Team::where('name', 'Organizing Committee')->first(),]) 5 | @else 6 |
7 | 8 | No organizing committee team 9 |
10 | @endif 11 | @endsection 12 | -------------------------------------------------------------------------------- /resources/views/dashboard/bgc/quick-contacts.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @if (\App\Team::where('name', 'Quick Contacts')->first()) 4 | @livewire ('team.team-display', ['team' => \App\Team::where('name', 'Quick Contacts')->first(),]) 5 | @else 6 |
7 | 8 | No quick contact team 9 |
10 | @endif 11 | @endsection 12 | -------------------------------------------------------------------------------- /resources/views/dashboard/cafe-sale.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('cafe-sale.dashboard.cafe-sale-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/calendar-group.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('calendar.dashboard.calendar-group-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/calendar.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('calendar.dashboard.calendar-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/change-password.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('user-profile.dashboard.change-password-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/cms/gallery.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire ('cms.dashboard.gallery-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/cms/nav-menu.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire ('cms.dashboard.nav-menu-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/cms/post.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('cms.dashboard.post-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/cms/theme.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire ('cms.dashboard.theme-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/cms/webpage.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('cms.dashboard.webpage-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/company.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('company.dashboard.company-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/contact-form.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('contact-form.dashboard.contact-form-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/customer.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('customer.dashboard.customer-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/daybook.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('record-book.dashboard.daybook-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/document-file.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('document-file.dashboard.document-file-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/expense.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('expense.dashboard.expense-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/help.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('misc.help-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/institution.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('educ.institution.dashboard.institution-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/inventory.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('inventory.inventory-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/newsletter-subscription.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('newsletter-subscription.dashboard.newsletter-subscription-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/online-order.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('online-order.dashboard.online-order-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/product-category.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section ('content') 4 | @livewire('product-category.dashboard.product-category-component') 5 | @stop 6 | -------------------------------------------------------------------------------- /resources/views/dashboard/product-question.blade.php: -------------------------------------------------------------------------------- 1 | @extends ('layouts.app') 2 | 3 | @section ('content') 4 | @livewire ('product.dashboard.product-question-component') 5 | @stop 6 | -------------------------------------------------------------------------------- /resources/views/dashboard/product-vendor.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 | @livewire('product-vendor.dashboard.product-vendor-component') 5 | @stop 6 | -------------------------------------------------------------------------------- /resources/views/dashboard/product.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('product.dashboard.product-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/purchase.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('purchase.dashboard.purchase-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/report.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('report.dashboard.report-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/sale-invoice.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('sale-invoice.dashboard.sale-invoice-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/sale-quotation.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('shop.dashboard.sale-quotation-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/sale.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('sale-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/settings.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('misc.settings-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/takeaway.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('sale.takeaway-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/team.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('team.dashboard.team-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/testimonial.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('testimonial.dashboard.testimonial-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/theme.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/resources/views/dashboard/theme.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/todo.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('todo.dashboard.todo-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/url-link.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('url-link.dashboard.url-link-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/user-group.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('user-group.dashboard.user-group-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/user-profile.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('user.dashboard.user-profile-display') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/users.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('user.dashboard.user-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/vacancy.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('vacancy.dashboard.vacancy-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/vat.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('vat-return') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/vendor.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire('vendor.dashboard.vendor-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/dashboard/weekbook.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section ('content') 3 | @livewire ('record-book.dashboard.weekbook-component') 4 | @endsection 5 | -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Unauthorized')) 4 | @section('code', '401') 5 | @section('message', __('Unauthorized')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Forbidden')) 4 | @section('code', '403') 5 | @section('message', __($exception->getMessage() ?: 'Forbidden')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Page Expired')) 4 | @section('code', '419') 5 | @section('message', __('Page Expired')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Too Many Requests')) 4 | @section('code', '429') 5 | @section('message', __('Too Many Requests')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Server Error')) 4 | @section('code', '500') 5 | @section('message', __('Server Error')) 6 | -------------------------------------------------------------------------------- /resources/views/livewire/accounting/dashboard/accounting-journal-book.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | Journal 5 |

6 |
7 |
8 | @livewire ('accounting.dashboard.journal-entry-list') 9 |
10 |
11 | -------------------------------------------------------------------------------- /resources/views/livewire/app-info/dashboard/lv-company-info.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 | 6 |
7 | {{ $company->name }} 8 |

9 |
10 |
11 | -------------------------------------------------------------------------------- /resources/views/livewire/app-info/dashboard/lv-package-info.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | v0.9.3 5 | 6 |
7 | -------------------------------------------------------------------------------- /resources/views/livewire/app-info/dashboard/lv-package-welcome.blade.php: -------------------------------------------------------------------------------- 1 |
4 |
5 |

6 | 7 | Samarium 8 |

9 |
10 |
11 | -------------------------------------------------------------------------------- /resources/views/livewire/cafe-sale/dashboard/seat-table-display.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{-- The Master doesn't talk, he acts. --}} 3 |
4 | -------------------------------------------------------------------------------- /resources/views/livewire/calendar/dashboard/calendar-event-edit-is-holiday.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 8 |
9 | 10 |
11 | @include ('partials.button-update') 12 | @include ('partials.button-cancel', ['clickEmitEventName' => 'calendarEventUpdateIsHolidayCancelled',]) 13 | @include ('partials.spinner-border') 14 |
15 | 16 |
17 | -------------------------------------------------------------------------------- /resources/views/livewire/calendar/dashboard/calendar-event-edit-name.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'calendarEventUpdateNameCancelled',]) 10 | @include ('partials.spinner-border') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/gallery-add-image.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | @error('images') {{ $message }} @enderror 7 |
8 | 9 |
10 | 11 | 12 | @include ('partials.dashboard.spinner-button') 13 |
14 | 15 |
16 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/gallery-update-name.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |
7 | @include ('partials.button-store') 8 | @include ('partials.button-cancel', ['clickEmitEventName' => 'updateGalleryNameCancel',]) 9 | @include ('partials.dashboard.spinner-button') 10 |
11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/notice-glance-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 9 | 10 |
11 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/post-category-create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | 6 | 9 | @error('name') {{ $message }} @enderror 10 |
11 | 12 |
13 | @include ('partials.button-store') 14 | @include ('partials.button-cancel', ['clickEmitEventName' => 'createPostCategoryCanceled',]) 15 | @include ('partials.dashboard.spinner-button') 16 |
17 |
18 | 19 |
20 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/webpage-content-create-heading.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 |
7 | 8 |
9 | @include ('partials.button-store') 10 | @include ('partials.button-cancel', ['clickEmitEventName' => 'webpageContentCreateHeadingCancelled',]) 11 | @include ('partials.dashboard.spinner-button') 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/webpage-content-create-image.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | @error('image') {{ $message }} @enderror 7 |
8 | 9 |
10 | @include ('partials.button-store') 11 | @include ('partials.button-cancel', ['clickEmitEventName' => 'webpageContentCreateImageCancelled',]) 12 | @include ('partials.dashboard.spinner-button') 13 |
14 | 15 |
16 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/webpage-content-create/youtube-video.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | Youtube video 5 |

6 | 7 |
8 | 9 | 10 | @error('youtube_video_id') {{ $message }} @enderror 11 |
12 | 13 |
14 | 17 | 20 |
21 | 22 |
23 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/dashboard/webpage-edit-featured-image.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | @error('featured_image') {{ $message }} @enderror 7 |
8 | 9 |
10 | @include ('partials.button-store') 11 | @include ('partials.button-cancel', ['clickEmitEventName' => 'webpageEditFeaturedImageCancel',]) 12 | @include ('partials.dashboard.spinner-button') 13 |
14 | 15 |
16 | -------------------------------------------------------------------------------- /resources/views/livewire/cms/website/latest-post-list.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | 9 | 10 | @foreach ($webpages as $webpage) 11 | 12 | 17 | 18 | @endforeach 19 |
7 | Latest posts 8 |
13 | 14 | {{ $webpage->name }} 15 | 16 |
20 |
21 | 22 |
23 | -------------------------------------------------------------------------------- /resources/views/livewire/company/dashboard/brief-description-edit.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 | 7 | @error ('brief_description') {{ $message }} @enderror 8 |
9 | 10 |
11 | @include ('partials.button-update') 12 | @include ('partials.button-cancel', ['clickEmitEventName' => 'briefDescriptionEditCancelled',]) 13 | @include ('partials.dashboard.spinner-button') 14 |
15 |
16 | 17 |
18 | -------------------------------------------------------------------------------- /resources/views/livewire/company/dashboard/company-info-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |

5 | 6 | SomeRandom Shop 7 |

8 | 9 |

10 | 11 | SomeRandom, Place 12 |

13 | 14 |

15 | 16 | +--- ---------- 17 |

18 |
19 | 20 |
21 | -------------------------------------------------------------------------------- /resources/views/livewire/contact-form/dashboard/contact-message-create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | Nothing in the world is as soft and yielding as water. 3 |
4 | -------------------------------------------------------------------------------- /resources/views/livewire/contact-form/dashboard/contact-message-glance-component.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 9 | 10 |
11 | -------------------------------------------------------------------------------- /resources/views/livewire/customer/dashboard/customer-edit-email.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'customerUpdateEmailCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/customer/dashboard/customer-edit-name.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'customerUpdateNameCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/customer/dashboard/customer-edit-pan.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'customerUpdatePanCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/customer/dashboard/customer-edit-phone.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'customerUpdatePhoneCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/dashboard/settings/login-page-setting.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | Login page 5 |

6 | 11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/document-file/dashboard/document-file-display-pdf.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 6 |
7 | 8 |
9 | -------------------------------------------------------------------------------- /resources/views/livewire/ecomm-website/menu.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | @foreach ($webpages as $webpage) 4 | 5 | {{ $webpage->permalink }} 6 | 7 | @endforeach 8 | 9 |
10 | -------------------------------------------------------------------------------- /resources/views/livewire/ecomm-website/shopping-cart-badge.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | @include ('partials.dashboard.spinner-button') 7 | 8 |
9 | -------------------------------------------------------------------------------- /resources/views/livewire/expense/dashboard/expense-category-create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |

Create new expense category

5 | 6 |
7 | 8 | 9 | @error('name') {{ $message }} @enderror 10 |
11 | 12 |
13 | @include ('partials.button-store') 14 | @include ('partials.button-cancel', ['clickEmitEventName' => 'exitCategoryCreateMode',]) 15 |
16 |
17 | 18 |
19 | -------------------------------------------------------------------------------- /resources/views/livewire/expense/dashboard/expense-display.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | @livewire ('core.dashboard.core-expense-display', ['expense' => $expense,]) 4 | 5 |
6 | -------------------------------------------------------------------------------- /resources/views/livewire/online-order/dashboard/online-order-counter.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | @if ($newOrderCount > 0) 8 | 15 | {{ $newOrderCount }} 16 | 17 | @endif 18 | 19 |
20 | -------------------------------------------------------------------------------- /resources/views/livewire/online-order/dashboard/online-order-glance.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 10 | 11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/online-order/dashboard/online-order-search.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | Coming soon. 4 | 5 |
6 | -------------------------------------------------------------------------------- /resources/views/livewire/product-category/dashboard/product-category-edit-image.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | @error('image') {{ $message }} @enderror 6 |
7 | 8 |
9 | @include ('partials.button-update') 10 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productCategoryUpdateImageCancelled',]) 11 | @include ('partials.dashboard.spinner-button') 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /resources/views/livewire/product-category/dashboard/product-category-edit-name.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['btnText' => 'Cancel', 'clickEmitEventName' => 'productCategoryUpdateNameCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product-category/dashboard/product-category-product-list-l1.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{-- Knowing others is intelligence; knowing yourself is true wisdom. --}} 3 |
4 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-answer-create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | @error('answer_text') {{ $message }} @enderror 7 |
8 | 9 | @include ('partials.button-store') 10 | @include ('partials.button-cancel', ['clickEmitEventName' => 'createProductAnswerCancelled',]) 11 | @include ('partials.dashboard.spinner-button') 12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-edit-description.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productUpdateDescriptionCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-edit-image.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | @error('image') {{ $message }} @enderror 6 |
7 | 8 |
9 | @include ('partials.button-update') 10 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productUpdateImageCancelled',]) 11 | @include ('partials.dashboard.spinner-button') 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-edit-name.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productUpdateNameCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-edit-price-unit.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productUpdatePriceUnitCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-edit-price.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productUpdatePriceCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-edit-video-link.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |

5 | Edit video link 6 |

7 | 8 |
9 | 10 |
11 | 12 |
13 | @include ('partials.button-update') 14 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productUpdateVideoLinkCancelled',]) 15 | @include ('partials.dashboard.spinner-button') 16 |
17 |
18 | 19 |
20 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-feature-edit.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productFeatureUpdateCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-specification-keyword-edit.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productSpecificationUpdateKeywordCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/dashboard/product-specification-value-edit.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'productSpecificationUpdateValueCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/product/website/featured-product-list.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |

5 | Featured properties 6 |

7 | 8 |
9 | @foreach ($featuredProducts as $product) 10 | @if ($product->show_in_front_end == 'yes') 11 |
12 | @livewire ('ecomm-website.product-list-display', ['product' => $product,]) 13 |
14 | @endif 15 | @endforeach 16 |
17 |
18 | 19 |
20 | -------------------------------------------------------------------------------- /resources/views/livewire/sale-invoice/dashboard/sale-invoice-create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | @livewire ('sale-invoice.dashboard.sale-invoice-work', ['saleInvoice' => $saleInvoice,]) 3 |
4 | -------------------------------------------------------------------------------- /resources/views/livewire/sale-quotation/dashboard/sale-quotation-create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | @livewire ('sale-quotation.dashboard.sale-quotation-work', ['saleQuotation' => $saleQuotation,]) 3 |
4 | -------------------------------------------------------------------------------- /resources/views/livewire/shop/dashboard/shop-glance.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 10 | 11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/takeaway/takeaway-create.blade.php: -------------------------------------------------------------------------------- 1 |
2 | @livewire ('sale.sale-invoice-work', ['saleInvoice' => $takeaway->saleInvoice,]) 3 |
4 | -------------------------------------------------------------------------------- /resources/views/livewire/team/dashboard/team-member-edit-email.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-store') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'teamMemberUpdateEmailCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/team/dashboard/team-member-edit-name.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-store') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'teamMemberUpdateNameCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/team/dashboard/team-member-edit-phone.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-store') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'teamMemberUpdatePhoneCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/team/dashboard/team-member-edit-picture.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | Edit image 5 |

6 | 7 |
8 | 9 | @error('image') {{ $message }} @enderror 10 |
11 | 12 |
13 | @include ('partials.button-update') 14 | @include ('partials.button-cancel', ['clickEmitEventName' => 'teamMemberUpdatePictureCancelled',]) 15 | @include ('partials.dashboard.spinner-button') 16 |
17 | 18 |
19 | -------------------------------------------------------------------------------- /resources/views/livewire/todo/dashboard/todo-edit-assigned-to.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 8 | 9 |
10 | @include ('partials.button-update') 11 | @include ('partials.button-cancel', ['clickEmitEventName' => 'todoUpdateAssignedToCancelled',]) 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /resources/views/livewire/todo/dashboard/todo-edit-description.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'todoUpdateDescriptionCancelled',]) 10 |
11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/todo/dashboard/todo-edit-due-date.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | @include ('partials.button-update') 7 | @include ('partials.button-cancel', ['clickEmitEventName' => 'todoUpdateDueDateCancelled',]) 8 |
9 | 10 |
11 | -------------------------------------------------------------------------------- /resources/views/livewire/todo/dashboard/todo-edit-priority.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 8 | 9 |
10 | @include ('partials.button-update') 11 | @include ('partials.button-cancel', ['clickEmitEventName' => 'todoUpdatePriorityCancelled',]) 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /resources/views/livewire/todo/dashboard/todo-edit-status.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 10 | 11 |
12 | @include ('partials.button-update') 13 | @include ('partials.button-cancel', ['clickEmitEventName' => 'todoUpdateStatusCancelled',]) 14 |
15 | 16 |
17 | -------------------------------------------------------------------------------- /resources/views/livewire/todo/dashboard/todo-edit-title.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'todoUpdateTitleCancelled',]) 10 |
11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/todo/dashboard/todo-list-confirm-delete.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | @include ('partials.confirm-delete-modal', [ 4 | 'modelName' => 'Todo', 5 | 'modelId' => $todo->todo_id, 6 | 'mainText' => $todo->title, 7 | 'modalId' => 'todoConfirmDeleteModal', 8 | ]) 9 | 10 |
11 | -------------------------------------------------------------------------------- /resources/views/livewire/vacancy/dashboard/vacancy-edit-description.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'vacancyUpdateDescriptionCancelled',]) 10 |
11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/vacancy/dashboard/vacancy-edit-title.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'vacancyUpdateTitleCancelled',]) 10 |
11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/livewire/vendor/dashboard/vendor-edit-email.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'vendorUpdateEmailCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/vendor/dashboard/vendor-edit-name.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'vendorUpdateNameCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/vendor/dashboard/vendor-edit-pan.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'vendorUpdatePanCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/livewire/vendor/dashboard/vendor-edit-phone.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | 7 |
8 | @include ('partials.button-update') 9 | @include ('partials.button-cancel', ['clickEmitEventName' => 'vendorUpdatePhoneCancelled',]) 10 | @include ('partials.dashboard.spinner-button') 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/mail/newsletter-subscription-notification.blade.php: -------------------------------------------------------------------------------- 1 | This is a thank you email to {{ $newsletterSubscription->email }} with a warm thanks. 2 | -------------------------------------------------------------------------------- /resources/views/partials/button-cancel.blade.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /resources/views/partials/button-general-block.blade.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /resources/views/partials/button-general.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /resources/views/partials/button-store.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /resources/views/partials/button-update.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /resources/views/partials/cms/footer-new.blade.php: -------------------------------------------------------------------------------- 1 |

2 | This is a new footer 3 |

4 | -------------------------------------------------------------------------------- /resources/views/partials/cms/header.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /resources/views/partials/cms/website/company-info.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

5 | {{ $company->short_name }} 6 |

7 | 8 |
9 | {{ $company->brief_description }} 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /resources/views/partials/cms/website/home-page-not-set-yet.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 | Home page not set yet. Please set up the home page. 6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /resources/views/partials/cms/website/page-announcer.blade.php: -------------------------------------------------------------------------------- 1 | {{-- 2 | | 3 | | Page announcer blade file. 4 | | 5 | | This is the page announcer blade file for webpages. 6 | | 7 | --}} 8 | 9 |
10 | @if ($webpage->featured_image_path != null) 11 | @include ('partials.cms.website.featured-image-page-announcer') 12 | @else 13 | @include ('partials.cms.website.no-featured-image-page-announcer') 14 | @endif 15 |
16 | -------------------------------------------------------------------------------- /resources/views/partials/dashboard/app-top-menu-school-dropdown.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 14 |
15 | -------------------------------------------------------------------------------- /resources/views/partials/dashboard/login-left.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |

6 | DigiBook 7 |

8 | @if (true) 9 |

10 | Your digital book 11 |

12 | @endif 13 | 14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /resources/views/partials/dashboard/pkg-branding.blade.php: -------------------------------------------------------------------------------- 1 | {{-- 2 | | 3 | | Package branding. 4 | | 5 | | Show package name and version. 6 | | 7 | --}} 8 |
9 |
10 |

11 | 12 | Ozone 13 | 14 |

15 |

16 | v0.8.5 17 |

18 |
19 |
20 | -------------------------------------------------------------------------------- /resources/views/partials/dashboard/sale-quotation-work-options.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | Print 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/views/partials/dashboard/spinner-button.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/views/partials/ecomm-website/headers-header.blade.php: -------------------------------------------------------------------------------- 1 | {{-- Very top bar --}} 2 |
3 |
4 | {{-- Clock --}} 5 |
6 | 7 | 8 | Shop online 9 | 10 |
11 | 12 | {{-- Phone --}} 13 |
14 | 15 | 16 | {{ $company->phone }} 17 | 18 |
19 |
20 |
21 | -------------------------------------------------------------------------------- /resources/views/partials/ecomm-website/top-menu.blade.php: -------------------------------------------------------------------------------- 1 |
2 | @livewire ('ecomm-website.top-menu') 3 |
4 | -------------------------------------------------------------------------------- /resources/views/partials/flash-message.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 9 |
10 | -------------------------------------------------------------------------------- /resources/views/partials/misc/dashboard-vendor-announcement.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 11 |
12 | -------------------------------------------------------------------------------- /resources/views/partials/misc/flash-card-simple.blade.php: -------------------------------------------------------------------------------- 1 | {{-- A simple flash card --}} 2 |
3 |
4 |
5 |
6 |

7 | {{ $fcTitle }} 8 |

9 | 10 |
11 |

12 | {{ $fcData }} 13 |

14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /resources/views/partials/product/product-display/creation-update-info.blade.php: -------------------------------------------------------------------------------- 1 | {{-- Creation and update info --}} 2 |
3 |
4 |

5 | Product history 6 |

7 |
8 |
9 |
10 | Created at: 11 |     12 | {{ $product->created_at }} 13 |
14 |
15 |
16 |
17 |
18 |
19 | Updated at: 20 |    21 | {{ $product->updated_at }} 22 |
23 |
24 |
25 |
26 |
27 | -------------------------------------------------------------------------------- /resources/views/partials/product/product-display/social-count.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | Views 5 |

6 |
7 | 8 |
9 | {{ $product->website_views }} views 10 |
11 |
12 | -------------------------------------------------------------------------------- /resources/views/partials/spinner-border.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /resources/views/partials/team/team-display-fe.blade.php: -------------------------------------------------------------------------------- 1 |
2 | @if (($displayTeamName ?? true) ) 3 | @if ($team->name == 'Quick contacts') 4 |

5 | Important contacts 6 |

7 | @else 8 |

9 | {{ $team->name }} 10 |

11 | @endif 12 | @endif 13 | 14 |
15 | 16 | @foreach ($team->teamMembers()->orderBy('position')->get() as $teamMember) 17 |
18 | @include ('partials.team.person-display-fe', ['person' => $teamMember,]) 19 |
20 | @endforeach 21 |
22 |
23 | -------------------------------------------------------------------------------- /resources/views/partials/team/team-display.blade.php: -------------------------------------------------------------------------------- 1 |
2 | @if ($displayTeamName ?? true) 3 |

4 | {{ $team->name }} 5 |

6 | @endif 7 | 8 |
9 | 10 | @foreach ($team->teamMembers as $teamMember) 11 |
12 | @include ('partials.person-display', ['person' => $teamMember,]) 13 |
14 | @endforeach 15 |
16 |
17 | -------------------------------------------------------------------------------- /resources/views/partials/unused/flash-message.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 9 |
10 | -------------------------------------------------------------------------------- /resources/views/partials/unused/website-hero-para.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/resources/views/partials/unused/website-hero-para.blade.php -------------------------------------------------------------------------------- /resources/views/website/appointment/book-appointment.blade.php: -------------------------------------------------------------------------------- 1 | @extends ('website.cms.base') 2 | 3 | @if (config('app.site_type') !== 'erp') 4 | @section ('googleAnalyticsTag') 5 | @endsection 6 | 7 | @section ('pageTitleTag') 8 | Book appointment 9 | @endsection 10 | 11 | @section ('googleAnalyticsTag') 12 | @endsection 13 | 14 | @section ('pageDescriptionTag') 15 | 16 | @endsection 17 | @endif 18 | 19 | @section ('content') 20 | @livewire ('appointment.website.appointment-create', ['teamMember' => $teamMember,]) 21 | @endsection 22 | -------------------------------------------------------------------------------- /resources/views/website/ecommerce/checkout.blade.php: -------------------------------------------------------------------------------- 1 | @extends ('website.cms.base') 2 | 3 | @section ('content') 4 | @livewire ('ecomm-website.checkout', ['cartItems' => $cartItems,]) 5 | @endsection 6 | 7 | -------------------------------------------------------------------------------- /resources/views/website/ecommerce/product-category-product-list.blade.php: -------------------------------------------------------------------------------- 1 | @extends ('website.cms.base') 2 | 3 | @section ('pageTitleTag') 4 | 5 | {{ $productCategory->name }} 6 | {{ env ('CMP_NAME', 'Foobiz') }} 7 | 8 | @endsection 9 | 10 | @section ('content') 11 |
12 | @livewire ('ecomm-website.product-category-product-list', ['productCategory' => $productCategory,]) 13 |
14 | @endsection 15 | -------------------------------------------------------------------------------- /resources/views/website/testimonial/testimonial-create.blade.php: -------------------------------------------------------------------------------- 1 | @extends ('website.cms.base') 2 | 3 | @section ('content') 4 |
5 | @livewire ('testimonial.website.testimonial-create') 6 |
7 | @endsection 8 | -------------------------------------------------------------------------------- /resources/views/website/user/signup.blade.php: -------------------------------------------------------------------------------- 1 | @extends ('website.cms.base') 2 | 3 | @section ('content') 4 |
5 |
6 |
7 |
8 |
9 |

10 | Signup to get started. 11 |

12 |
13 |
14 |
15 |
16 | @livewire ('user.website.signup') 17 |
18 |
19 |
20 | @endsection 21 | -------------------------------------------------------------------------------- /resources/views/website/vacancy/vacancy-view.blade.php: -------------------------------------------------------------------------------- 1 | @extends ('website.cms.base') 2 | 3 | @section ('content') 4 |
5 | @livewire ('vacancy.website.vacancy-view', ['vacancy' => $vacancy,]) 6 |
7 | @endsection 8 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->describe('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /screenshots/create-post-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/create-post-1.gif -------------------------------------------------------------------------------- /screenshots/create-webpage-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/create-webpage-1.gif -------------------------------------------------------------------------------- /screenshots/dashboard-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/dashboard-screenshot-1.png -------------------------------------------------------------------------------- /screenshots/samarium-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/samarium-logo-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-change-password-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-change-password-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-customer-display-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-customer-display-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-daybook-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-daybook-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-expense-display-finished-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-expense-display-finished-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-expense-display-progress-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-expense-display-progress-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-expense-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-expense-list-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-gif-product-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-gif-product-1.gif -------------------------------------------------------------------------------- /screenshots/screenshot-login-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-login-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-page-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-page-list-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-post-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-post-list-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-product-category-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-product-category-list-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-product-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-product-list-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-purchase-display-finished-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-purchase-display-finished-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-purchase-display-progress-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-purchase-display-progress-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-purchase-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-purchase-list-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-sale-invoice-create-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-sale-invoice-create-1.gif -------------------------------------------------------------------------------- /screenshots/screenshot-sale-invoice-display-finished-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-sale-invoice-display-finished-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-sale-invoice-display-progress-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-sale-invoice-display-progress-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-sale-invoice-list-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-sale-invoice-list-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-settings-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-user-profile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-user-profile-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-vendor-display-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-vendor-display-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-website-homepage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-website-homepage-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-weekbook-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/screenshots/screenshot-weekbook-1.png -------------------------------------------------------------------------------- /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/app/public/samarium-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitcode/samarium/3e510897989af70d705e1d14449be39af5dadc24/storage/app/public/samarium-logo-1.png -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /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/Cms/Dashboard/WebpageCreateTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 21 | 22 | $response->assertStatus(200); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /tests/Feature/DashboardTest.php: -------------------------------------------------------------------------------- 1 | actingAs(User::first())->get('/dashboard'); 21 | 22 | $response->assertSuccessful(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/AccountingComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/accounting') 18 | ->assertSeeLivewire(AccountingComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/AppointmentComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/appointment') 18 | ->assertSeeLivewire(AppointmentComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/CafeSaleComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/cafesale') 18 | ->assertSeeLivewire(CafeSaleComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/CalendarComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/school/calendar') 18 | ->assertSeeLivewire(CalendarComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/CalendarGroupComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/calendar/calendar-group') 18 | ->assertSeeLivewire(CalendarGroupComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ChangePasswordComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/changePassword') 18 | ->assertSeeLivewire(ChangePasswordComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/CompanyComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/company') 18 | ->assertSeeLivewire(CompanyComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ContactFormComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/contact-form') 18 | ->assertSeeLivewire(ContactFormComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/CustomerComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/customer') 18 | ->assertSeeLivewire(CustomerComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/DaybookComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/daybook') 18 | ->assertSeeLivewire(DaybookComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/DocumentFileComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/document/file') 18 | ->assertSeeLivewire(DocumentFileComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ExpenseComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/expense') 18 | ->assertSeeLivewire(ExpenseComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/GalleryComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/cms/gallery') 18 | ->assertSeeLivewire(GalleryComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/InventoryComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/inventory') 18 | ->assertSeeLivewire(InventoryComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/NavMenuComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/cms/navMenu') 18 | ->assertSeeLivewire(NavMenuComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/NewsletterSubscriptionComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/newsletter-subscription') 18 | ->assertSeeLivewire(NewsletterSubscriptionComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/OnlineOrderComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/onlineorder') 18 | ->assertSeeLivewire(OnlineOrderComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/PostComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/cms/post') 18 | ->assertSeeLivewire(PostComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ProductCategoryComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/product-category') 18 | ->assertSeeLivewire(ProductCategoryComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ProductComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/product') 18 | ->assertSeeLivewire(ProductComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ProductQuestionComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/product-question') 18 | ->assertSeeLivewire(ProductQuestionComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ProductVendorComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/product-vendor') 18 | ->assertSeeLivewire(ProductVendorComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/PurchaseComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/purchase') 18 | ->assertSeeLivewire(PurchaseComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ReportComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/report') 18 | ->assertSeeLivewire(ReportComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/SaleInvoiceComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/sale') 18 | ->assertSeeLivewire(SaleInvoiceComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/SaleQuotationComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/sale-quotation') 18 | ->assertSeeLivewire(SaleQuotationComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/TeamComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/team') 18 | ->assertSeeLivewire(TeamComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/TestimonialComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/testimonial') 18 | ->assertSeeLivewire(TestimonialComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/ThemeComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/cms/theme') 18 | ->assertSeeLivewire(ThemeComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/TodoComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/todo') 18 | ->assertSeeLivewire(TodoComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/UrlLinkComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/document/url-link') 18 | ->assertSeeLivewire(UrlLinkComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/User/Dashboard/UserProfileDisplayTest.php: -------------------------------------------------------------------------------- 1 | first(); 14 | 15 | $this->actingAs($user) 16 | ->get('/dashboard/own-profile') 17 | ->assertOk() 18 | ->assertSee($user->name) 19 | ->assertSeeLivewire(UserProfileDisplay::class); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/User/Website/SignupTest.php: -------------------------------------------------------------------------------- 1 | get('/user/signup') 13 | ->assertStatus(200) 14 | ->assertSeeLivewire(Signup::class); 15 | } 16 | 17 | public function test_user_can_sign_up() 18 | { 19 | $this->assertTrue(true); 20 | 21 | // todo: need to do perform actual test. 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/VacancyComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/vacancy') 18 | ->assertSeeLivewire(VacancyComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/VendorComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/vendor') 18 | ->assertSeeLivewire(VendorComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/WebpageComponentTest.php: -------------------------------------------------------------------------------- 1 | first();; 15 | 16 | $this->actingAs($user) 17 | ->get('/cms/webpage') 18 | ->assertSeeLivewire(WebpageComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/WeekbookComponentTest.php: -------------------------------------------------------------------------------- 1 | first(); 15 | 16 | $this->actingAs($user) 17 | ->get('/dashboard/weekbook') 18 | ->assertSeeLivewire(WeekbookComponent::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tests/Feature/RegistrationTest.php: -------------------------------------------------------------------------------- 1 | get('/register'); 19 | 20 | $response->assertStatus(200); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/UriTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 14 | 15 | $response->assertStatus(200); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /tests/Feature/UserTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(Schema::hasColumn('users', 'role')); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel application. By default, we are compiling the Sass 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/js/app.js', 'public/js') 15 | .sass('resources/sass/app.scss', 'public/css'); 16 | --------------------------------------------------------------------------------