├── composer.json ├── phpunit.xml ├── readme.md ├── src └── Litepie │ ├── Actions │ ├── Action.php │ ├── ActionLogger.php │ ├── ActionRequest.php │ ├── ActionType.php │ ├── Actions.php │ ├── ActionsServiceProvider.php │ ├── Concerns │ │ └── AsAction.php │ ├── Contracts │ │ ├── Action.php │ │ └── Actions.php │ ├── Facades │ │ └── Actions.php │ ├── Models │ │ └── Action.php │ ├── Registry.php │ ├── Traits │ │ ├── Actionable.php │ │ └── LogsActions.php │ ├── composer.json │ └── config │ │ └── config.php │ ├── Database │ ├── DatabaseServiceProvider.php │ ├── Facades │ │ └── ModelMacro.php │ ├── Model.php │ ├── ModelMacro.php │ ├── Scopes │ │ ├── ArchivableScope.php │ │ └── RequestScope.php │ ├── Traits │ │ ├── Archivable.php │ │ ├── Requestable.php │ │ ├── Scopable.php │ │ ├── Searchable.php │ │ ├── Sluggable.php │ │ └── Sortable.php │ └── composer.json │ ├── Filer │ ├── Exceptions │ │ ├── InvalidFileConfigException.php │ │ ├── InvalidFileSizeException.php │ │ └── InvalidFileTypeException.php │ ├── Filer.php │ ├── FilerServiceProvider.php │ ├── Http │ │ └── Controllers │ │ │ └── FileController.php │ ├── Providers │ │ └── RouteServiceProvider.php │ ├── Templates │ │ ├── ExtraLarge.php │ │ ├── ExtraSmall.php │ │ ├── Large.php │ │ ├── Medium.php │ │ ├── Original.php │ │ └── Small.php │ ├── Traits │ │ ├── FileDisplay.php │ │ ├── Filer.php │ │ └── Uploader.php │ ├── composer.json │ ├── config.php │ ├── image.php │ └── routes │ │ ├── api.php │ │ └── web.php │ ├── Form │ ├── Field │ │ ├── Attributes.php │ │ ├── Types.php │ │ └── Types │ │ │ ├── Checkable.php │ │ │ ├── Files.php │ │ │ ├── InputGroup.php │ │ │ ├── Map.php │ │ │ └── Selectable.php │ ├── Fields.php │ ├── Form.php │ ├── FormInterpreter.php │ ├── FormServiceProvider.php │ ├── Interfaces │ │ └── FormsInterface.php │ ├── Lists.php │ ├── composer.json │ ├── config.php │ ├── helpers.php │ └── resources │ │ └── views │ │ ├── bootstrap4 │ │ ├── form │ │ │ ├── _label.blade.php │ │ │ ├── _wrapper.blade.php │ │ │ ├── avatar.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── croper.blade.php │ │ │ ├── file.blade.php │ │ │ ├── hidden.blade.php │ │ │ ├── html_editor.blade.php │ │ │ ├── input.blade.php │ │ │ ├── map.blade.php │ │ │ ├── radios.blade.php │ │ │ ├── select.blade.php │ │ │ ├── switch.blade.php │ │ │ ├── tags.blade.php │ │ │ └── textarea.blade.php │ │ └── list │ │ │ ├── amount.blade.php │ │ │ ├── badge.blade.php │ │ │ ├── date.blade.php │ │ │ ├── images.blade.php │ │ │ ├── profile.blade.php │ │ │ └── text.blade.php │ │ ├── foundation5 │ │ └── form │ │ │ └── input.blade.php │ │ └── nude │ │ └── form │ │ └── input.blade.php │ ├── Foundation │ ├── Providers │ │ ├── ActionServiceProvider.php │ │ └── WorkflowServiceProvider.php │ └── helpers.php │ ├── Hashids │ ├── HashidsServiceProvider.php │ ├── Traits │ │ └── Hashids.php │ ├── composer.json │ └── config.php │ ├── Http │ ├── Controllers │ │ ├── ActionController.php │ │ ├── AuthController.php │ │ ├── PublicController.php │ │ └── ResourceController.php │ ├── Request │ │ └── AbstractRequest.php │ ├── Response │ │ ├── AbstractResponse.php │ │ ├── ActionResponse.php │ │ ├── AuthResponse.php │ │ ├── PublicResponse.php │ │ ├── ReportResponse.php │ │ ├── ResourceResponse.php │ │ └── WorkflowResponse.php │ ├── Traits │ │ ├── RequestTrait.php │ │ ├── ThemeTrait.php │ │ └── ViewTrait.php │ └── composer.json │ ├── Install │ ├── Events │ │ ├── EnvironmentSaved.php │ │ └── LaravelInstallerFinished.php │ ├── Helpers │ │ ├── DatabaseManager.php │ │ ├── EnvironmentManager.php │ │ ├── FinalInstallManager.php │ │ ├── InstalledFileManager.php │ │ ├── MigrationsHelper.php │ │ ├── PermissionsChecker.php │ │ ├── RequirementsChecker.php │ │ ├── UserUpdater.php │ │ └── functions.php │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ ├── DatabaseController.php │ │ │ ├── EnvironmentController.php │ │ │ ├── FinalController.php │ │ │ ├── InstallCommands.php │ │ │ ├── InstallController.php │ │ │ ├── PermissionsController.php │ │ │ ├── RequirementsController.php │ │ │ ├── UpdateController.php │ │ │ └── WelcomeController.php │ │ ├── DatabaseController.php │ │ ├── EnvironmentController.php │ │ ├── FinalController.php │ │ ├── PermissionsController.php │ │ ├── RequirementsController.php │ │ ├── UpdateController.php │ │ └── WelcomeController.php │ ├── InstallCommand.php │ ├── InstallServiceProvider.php │ ├── Installers │ │ ├── Installer.php │ │ ├── Scripts │ │ │ ├── ConfigureDatabase.php │ │ │ ├── PackageMigrators.php │ │ │ ├── PackageSeeders.php │ │ │ ├── PackgeAssets.php │ │ │ ├── ProtectInstaller.php │ │ │ ├── SetAppKey.php │ │ │ └── SetSuperuserUser.php │ │ ├── SetupScript.php │ │ ├── Traits │ │ │ ├── BlockMessage.php │ │ │ └── SectionMessage.php │ │ └── Writers │ │ │ └── EnvFileWriter.php │ ├── Middleware │ │ ├── canInstall.php │ │ └── canUpdate.php │ ├── Providers │ │ └── RouteServiceProvider.php │ ├── Traits │ │ └── Install.php │ ├── composer.json │ ├── config │ │ └── installer.php │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ └── messages.php │ │ └── views │ │ │ ├── environment-classic.blade.php │ │ │ ├── environment-wizard.blade.php │ │ │ ├── environment.blade.php │ │ │ ├── finished.blade.php │ │ │ ├── layouts │ │ │ ├── master-update.blade.php │ │ │ └── master.blade.php │ │ │ ├── permissions.blade.php │ │ │ ├── requirements.blade.php │ │ │ ├── update │ │ │ ├── finished.blade.php │ │ │ ├── overview.blade.php │ │ │ └── welcome.blade.php │ │ │ └── welcome.blade.php │ └── routes │ │ └── web.php │ ├── Log │ ├── .travis.yml │ ├── Database │ │ └── migrations │ │ │ ├── 2023_03_29_100001_create_log_actions_table.php │ │ │ └── 2023_03_29_100001_create_log_activities_table.php │ ├── LogOptions.php │ ├── LogServiceProvider.php │ ├── Models │ │ └── Activity.php │ ├── Traits │ │ └── LogsActivity.php │ ├── composer.json │ └── config │ │ └── activity.php │ ├── Master │ ├── Actions │ │ ├── MasterAction.php │ │ └── MasterActions.php │ ├── Database │ │ ├── Seeders │ │ │ └── MasterTableSeeder.php │ │ └── migrations │ │ │ └── 2023_03_28_100001_create_masters_table.php │ ├── Forms │ │ └── Master.php │ ├── Http │ │ ├── Controllers │ │ │ └── MasterResourceController.php │ │ ├── Requests │ │ │ └── MasterResourceRequest.php │ │ └── Resources │ │ │ ├── MasterResource.php │ │ │ ├── MastersCollection.php │ │ │ └── MastersResource.php │ ├── Master.php │ ├── MasterServiceProvider.php │ ├── Models │ │ └── Master.php │ ├── Policies │ │ └── MasterPolicy.php │ ├── Providers │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Scopes │ │ ├── MasterPublicScope.php │ │ └── MasterResourceScope.php │ ├── composer.json │ ├── config │ │ └── master.php │ ├── public │ │ └── .gitkeep │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ └── master.php │ │ └── views │ │ │ └── master │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── masters.blade.php │ │ │ ├── partials │ │ │ ├── aside.blade.php │ │ │ └── form.blade.php │ │ │ └── show.blade.php │ ├── routes │ │ ├── api.php │ │ ├── routes.php │ │ └── web.php │ └── tests │ │ └── .gitkeep │ ├── Menu │ ├── Actions │ │ ├── MenuAction.php │ │ └── MenuActions.php │ ├── Database │ │ ├── Seeders │ │ │ └── MenuTableSeeder.php │ │ └── migrations │ │ │ └── 2023_03_28_100001_create_menus_table.php │ ├── Forms │ │ └── Menu.php │ ├── Http │ │ ├── Controllers │ │ │ ├── MenuResourceController.php │ │ │ └── MenuSubResourceController.php │ │ ├── Requests │ │ │ └── MenuResourceRequest.php │ │ └── Resources │ │ │ ├── MenuResource.php │ │ │ ├── MenusCollection.php │ │ │ └── MenusResource.php │ ├── Menu.php │ ├── MenuServiceProvider.php │ ├── Models │ │ └── Menu.php │ ├── Policies │ │ └── MenuPolicy.php │ ├── Providers │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Scopes │ │ ├── MenuPublicScope.php │ │ └── MenuResourceScope.php │ ├── composer.json │ ├── config │ │ └── menu.php │ ├── public │ │ └── .gitkeep │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ ├── menu.php │ │ │ │ └── package.php │ │ └── views │ │ │ ├── admin │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── list.blade.php │ │ │ ├── menu │ │ │ │ ├── nestable.blade.php │ │ │ │ └── sub │ │ │ │ │ └── nestable.blade.php │ │ │ ├── new.blade.php │ │ │ ├── partial │ │ │ │ ├── menu.blade.php │ │ │ │ └── submenu.blade.php │ │ │ ├── show.blade.php │ │ │ └── sub │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ └── show.blade.php │ │ │ └── menu │ │ │ ├── admin.blade.php │ │ │ ├── client.blade.php │ │ │ ├── default.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── main.blade.php │ │ │ ├── social.blade.php │ │ │ ├── sub │ │ │ ├── admin.blade.php │ │ │ ├── client.blade.php │ │ │ ├── default.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── main.blade.php │ │ │ └── user.blade.php │ │ │ └── user.blade.php │ ├── routes │ │ ├── api.php │ │ ├── routes.php │ │ └── web.php │ └── tests │ │ └── .gitkeep │ ├── Node │ ├── NodeCollection.php │ ├── Traits │ │ ├── NestedNode.php │ │ └── SimpleNode.php │ └── composer.json │ ├── Notification │ ├── .travis.yml │ ├── Database │ │ ├── Seeders │ │ │ └── NotificationTableSeeder.php │ │ └── migrations │ │ │ ├── 2023_03_29_100001_create_notification_templates_table.php │ │ │ └── 2023_03_29_100001_create_notifications_table.php │ ├── Forms │ │ └── Notification.php │ ├── Http │ │ ├── Controllers │ │ │ └── NotificationResourceController.php │ │ ├── Requests │ │ │ └── NotificationResourceRequest.php │ │ └── Resources │ │ │ ├── NotificationResource.php │ │ │ ├── NotificationsCollection.php │ │ │ └── NotificationsResource.php │ ├── Models │ │ └── Notification.php │ ├── NotificationServiceProvider.php │ ├── Notifications.php │ ├── Notifier.php │ ├── Policies │ │ └── NotificationPolicy.php │ ├── Providers │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Scopes │ │ ├── NotificationPublicScope.php │ │ └── NotificationResourceScope.php │ ├── Traits │ │ └── SendNotification.php │ ├── composer.json │ ├── config │ │ └── notification.php │ ├── public │ │ └── .gitkeep │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ ├── notification.php │ │ │ │ └── package.php │ │ └── views │ │ │ └── default │ │ │ └── notification │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── aside.blade.php │ │ │ └── form.blade.php │ │ │ └── show.blade.php │ ├── routes │ │ ├── api.php │ │ ├── routes.php │ │ └── web.php │ └── tests │ │ └── .gitkeep │ ├── Repository │ ├── BaseRepository.php │ ├── Contracts │ │ ├── CacheableInterface.php │ │ ├── CriteriaInterface.php │ │ ├── Presentable.php │ │ ├── PresenterInterface.php │ │ ├── RepositoryCriteriaInterface.php │ │ ├── RepositoryInterface.php │ │ └── Transformable.php │ ├── Criteria │ │ └── RequestCriteria.php │ ├── Eloquent │ │ └── BaseRepository.php │ ├── Exceptions │ │ ├── RepositoryException.php │ │ └── RepositoryModelException.php │ ├── Filter │ │ └── RequestFilter.php │ ├── Interfaces │ │ ├── FilterInterface.php │ │ └── RepositoryInterface.php │ ├── Presenter │ │ ├── FractalPresenter.php │ │ ├── ModelFractalPresenter.php │ │ └── Presenter.php │ ├── Providers │ │ ├── EventServiceProvider.php │ │ ├── LumenRepositoryServiceProvider.php │ │ └── RepositoryServiceProvider.php │ ├── RepositoryServiceProvider.php │ ├── Traits │ │ ├── CacheableRepository.php │ │ ├── PresentableTrait.php │ │ └── TransformableTrait.php │ ├── composer.json │ └── config.php │ ├── Role │ ├── Actions │ │ ├── PermissionAction.php │ │ ├── PermissionActions.php │ │ ├── RoleAction.php │ │ └── RoleActions.php │ ├── Database │ │ ├── Seeders │ │ │ └── RoleTableSeeder.php │ │ └── migrations │ │ │ ├── 2017_11_09_100001_create_roles_table.php │ │ │ └── 2017_11_09_100002_create_permissions_table.php │ ├── Forms │ │ ├── Permission.php │ │ └── Role.php │ ├── Http │ │ ├── Controllers │ │ │ ├── PermissionResourceController.php │ │ │ └── RoleResourceController.php │ │ ├── Requests │ │ │ ├── PermissionResourceRequest.php │ │ │ └── RoleResourceRequest.php │ │ └── Resources │ │ │ ├── PermissionResource.php │ │ │ ├── PermissionsCollection.php │ │ │ ├── PermissionsResource.php │ │ │ ├── RoleResource.php │ │ │ ├── RolesCollection.php │ │ │ └── RolesResource.php │ ├── Models │ │ ├── Permission.php │ │ └── Role.php │ ├── Policies │ │ ├── PermissionPolicy.php │ │ └── RolePolicy.php │ ├── Providers │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Role.php │ ├── RoleServiceProvider.php │ ├── Scopes │ │ ├── PermissionResourceScope.php │ │ └── RoleResourceScope.php │ ├── Traits │ │ ├── CheckRoleAndPermission.php │ │ ├── HasRoleAndPermission.php │ │ ├── PermissionHasRelations.php │ │ └── RoleHasRelations.php │ ├── composer.json │ ├── config │ │ └── role.php │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ ├── package.php │ │ │ │ ├── permission.php │ │ │ │ └── role.php │ │ └── views │ │ │ └── default │ │ │ ├── permission │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ │ ├── aside.blade.php │ │ │ │ └── form.blade.php │ │ │ └── show.blade.php │ │ │ └── role │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── aside.blade.php │ │ │ └── form.blade.php │ │ │ └── show.blade.php │ ├── routes │ │ ├── api.php │ │ ├── routes.php │ │ └── web.php │ └── tests │ │ └── .gitkeep │ ├── Setting │ ├── Actions │ │ └── SettingActions.php │ ├── Database │ │ ├── Seeders │ │ │ └── SettingTableSeeder.php │ │ └── migrations │ │ │ └── 2023_03_28_100001_create_settings_table.php │ ├── Forms │ │ └── Setting.php │ ├── Http │ │ ├── Controllers │ │ │ └── SettingResourceController.php │ │ ├── Requests │ │ │ └── SettingResourceRequest.php │ │ └── Resources │ │ │ ├── SettingResource.php │ │ │ ├── SettingsCollection.php │ │ │ └── SettingsResource.php │ ├── Models │ │ └── Setting.php │ ├── Policies │ │ └── SettingPolicy.php │ ├── Providers │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Scopes │ │ ├── SettingGroupScope.php │ │ ├── SettingPublicScope.php │ │ └── SettingResourceScope.php │ ├── Setting.php │ ├── SettingServiceProvider.php │ ├── Stores │ │ ├── SettingEloquentStore.php │ │ └── SettingStore.php │ ├── composer.json │ ├── config │ │ └── setting.php │ ├── helpers.php │ ├── public │ │ └── .gitkeep │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ └── setting.php │ │ └── views │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── partial │ │ │ ├── 0.blade.php │ │ │ └── show.blade.php │ ├── routes │ │ ├── api.php │ │ ├── routes.php │ │ └── web.php │ ├── tests │ │ └── .gitkeep │ └── todo.md │ ├── States │ ├── Database │ │ └── migrations │ │ │ ├── 2023_03_28_100001_create_states_histories_table.php │ │ │ └── 2023_03_28_100001_create_states_pending_transitions_table.php │ ├── Exceptions │ │ ├── InvalidStartingStateException.php │ │ └── TransitionNotAllowedException.php │ ├── Jobs │ │ ├── PendingTransitionExecutor.php │ │ └── PendingTransitionsDispatcher.php │ ├── Models │ │ ├── PendingTransition.php │ │ └── StateHistory.php │ ├── StateMachines │ │ ├── State.php │ │ └── StateMachine.php │ ├── StatesServiceProvider.php │ ├── Traits │ │ └── HasStateMachines.php │ └── composer.json │ ├── Support │ └── Facades │ │ ├── Facade.php │ │ ├── Filer.php │ │ ├── Form.php │ │ ├── Hashids.php │ │ ├── Master.php │ │ ├── Menu.php │ │ ├── Notification.php │ │ ├── Role.php │ │ ├── Setting.php │ │ ├── Theme.php │ │ ├── Trans.php │ │ ├── User.php │ │ └── Workflow.php │ ├── Team │ ├── Actions │ │ ├── TeamAction.php │ │ ├── TeamActions.php │ │ └── TeamWorkflow.php │ ├── Database │ │ ├── Seeders │ │ │ └── TeamTableSeeder.php │ │ └── migrations │ │ │ └── 2023_03_28_100001_create_teams_table.php │ ├── Facades │ │ └── Teams.php │ ├── Forms │ │ └── Team.php │ ├── Http │ │ ├── Controllers │ │ │ └── TeamResourceController.php │ │ ├── Requests │ │ │ └── TeamResourceRequest.php │ │ └── Resources │ │ │ ├── TeamResource.php │ │ │ ├── TeamsCollection.php │ │ │ └── TeamsResource.php │ ├── Models │ │ ├── Team.php │ │ └── TeamUser.php │ ├── Policies │ │ └── TeamPolicy.php │ ├── Providers │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Scopes │ │ ├── TeamPublicScope.php │ │ └── TeamResourceScope.php │ ├── TeamServiceProvider.php │ ├── Teams.php │ ├── composer.json │ ├── config │ │ └── team.php │ ├── public │ │ └── .gitkeep │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ ├── package.php │ │ │ │ └── team.php │ │ └── views │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── aside.blade.php │ │ │ └── form.blade.php │ │ │ └── show.blade.php │ ├── routes │ │ ├── api.php │ │ ├── routes.php │ │ └── web.php │ └── tests │ │ └── .gitkeep │ ├── Theme │ ├── Asset.php │ ├── AssetContainer.php │ ├── Console │ │ └── ThemePublishCommand.php │ ├── Exceptions.php │ ├── Exceptions │ │ ├── UnknownLayoutFileException.php │ │ ├── UnknownPartialFileException.php │ │ ├── UnknownThemeException.php │ │ └── UnknownViewFileException.php │ ├── Theme.php │ ├── ThemeAndViews.php │ ├── ThemeServiceProvider.php │ ├── ThemeViewFinder.php │ ├── composer.json │ ├── config.php │ └── helpers.php │ ├── Trans │ ├── Http │ │ └── Middleware │ │ │ └── LocalizeRoutes.php │ ├── LanguageNegotiator.php │ ├── Traits │ │ └── Translatable.php │ ├── Trans.php │ ├── TransServiceProvider.php │ ├── composer.json │ └── config.php │ ├── User │ ├── Actions │ │ ├── ClientAction.php │ │ ├── ClientActions.php │ │ ├── UserAction.php │ │ └── UserActions.php │ ├── Database │ │ ├── Seeders │ │ │ ├── ClientTableSeeder.php │ │ │ └── UserTableSeeder.php │ │ └── migrations │ │ │ ├── 2025_01_05_100001_create_users_table.php │ │ │ └── 2025_01_05_100002_create_clients_table.php │ ├── Forms │ │ ├── Client.php │ │ └── User.php │ ├── Http │ │ ├── Controllers │ │ │ ├── ClientResourceController.php │ │ │ ├── UserActionsController.php │ │ │ └── UserResourceController.php │ │ ├── Requests │ │ │ ├── ClientResourceRequest.php │ │ │ ├── UserActionsRequest.php │ │ │ └── UserResourceRequest.php │ │ └── Resources │ │ │ ├── ClientResource.php │ │ │ ├── ClientsCollection.php │ │ │ ├── ClientsResource.php │ │ │ ├── UserResource.php │ │ │ ├── UsersCollection.php │ │ │ └── UsersResource.php │ ├── Interfaces │ │ └── UserPolicyInterface.php │ ├── Models │ │ ├── Client.php │ │ └── User.php │ ├── Notifications │ │ ├── ResetPassword.php │ │ └── VerifyEmail.php │ ├── Policies │ │ ├── ClientPolicy.php │ │ └── UserPolicy.php │ ├── Providers │ │ ├── ActionServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Scopes │ │ ├── ClientPublicScope.php │ │ ├── ClientResourceScope.php │ │ ├── UserPublicScope.php │ │ └── UserResourceScope.php │ ├── Traits │ │ ├── Auth │ │ │ └── SocialAuthentication.php │ │ ├── CanResetPassword.php │ │ ├── RoutesAndGuards.php │ │ └── UserProfile.php │ ├── User.php │ ├── UserServiceProvider.php │ ├── composer.json │ ├── config │ │ └── user.php │ ├── public │ │ └── .gitkeep │ ├── resources │ │ ├── lang │ │ │ └── en │ │ │ │ ├── client.php │ │ │ │ ├── package.php │ │ │ │ └── user.php │ │ └── views │ │ │ ├── client │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ │ ├── aside.blade.php │ │ │ │ └── form.blade.php │ │ │ └── show.blade.php │ │ │ └── user │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── aside.blade.php │ │ │ └── form.blade.php │ │ │ └── show.blade.php │ ├── routes │ │ ├── api.php │ │ ├── routes.php │ │ └── web.php │ └── tests │ │ └── .gitkeep │ ├── Validator │ ├── ReCaptcha.php │ ├── ValidatorServiceProvider.php │ └── composer.json │ └── Workflow │ ├── Commands │ └── WorkflowDumpCommand.php │ ├── Events │ ├── AnnounceEvent.php │ ├── BaseEvent.php │ ├── CompletedEvent.php │ ├── DispatcherAdapter.php │ ├── EnterEvent.php │ ├── EnteredEvent.php │ ├── GuardEvent.php │ ├── LeaveEvent.php │ ├── TransitionEvent.php │ └── WorkflowEvent.php │ ├── Exceptions │ ├── DuplicateWorkflowException.php │ └── RegistryNotTrackedException.php │ ├── MarkingStores │ └── EloquentMarkingStore.php │ ├── README.md │ ├── Traits │ ├── WorkflowControllerTrait.php │ ├── WorkflowTrait.php │ └── Workflowable.php │ ├── Workflow.php │ ├── WorkflowRegistry.php │ ├── WorkflowServiceProvider.php │ ├── composer.json │ └── config │ ├── config.php │ └── sample.php └── styleci.yml /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/readme.md -------------------------------------------------------------------------------- /src/Litepie/Actions/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Action.php -------------------------------------------------------------------------------- /src/Litepie/Actions/ActionLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/ActionLogger.php -------------------------------------------------------------------------------- /src/Litepie/Actions/ActionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/ActionRequest.php -------------------------------------------------------------------------------- /src/Litepie/Actions/ActionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/ActionType.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Actions.php -------------------------------------------------------------------------------- /src/Litepie/Actions/ActionsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/ActionsServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Concerns/AsAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Concerns/AsAction.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Contracts/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Contracts/Action.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Contracts/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Contracts/Actions.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Facades/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Facades/Actions.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Models/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Models/Action.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Registry.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Traits/Actionable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Traits/Actionable.php -------------------------------------------------------------------------------- /src/Litepie/Actions/Traits/LogsActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/Traits/LogsActions.php -------------------------------------------------------------------------------- /src/Litepie/Actions/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/composer.json -------------------------------------------------------------------------------- /src/Litepie/Actions/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Actions/config/config.php -------------------------------------------------------------------------------- /src/Litepie/Database/DatabaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/DatabaseServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Database/Facades/ModelMacro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Facades/ModelMacro.php -------------------------------------------------------------------------------- /src/Litepie/Database/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Model.php -------------------------------------------------------------------------------- /src/Litepie/Database/ModelMacro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/ModelMacro.php -------------------------------------------------------------------------------- /src/Litepie/Database/Scopes/ArchivableScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Scopes/ArchivableScope.php -------------------------------------------------------------------------------- /src/Litepie/Database/Scopes/RequestScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Scopes/RequestScope.php -------------------------------------------------------------------------------- /src/Litepie/Database/Traits/Archivable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Traits/Archivable.php -------------------------------------------------------------------------------- /src/Litepie/Database/Traits/Requestable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Traits/Requestable.php -------------------------------------------------------------------------------- /src/Litepie/Database/Traits/Scopable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Traits/Scopable.php -------------------------------------------------------------------------------- /src/Litepie/Database/Traits/Searchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Traits/Searchable.php -------------------------------------------------------------------------------- /src/Litepie/Database/Traits/Sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Traits/Sluggable.php -------------------------------------------------------------------------------- /src/Litepie/Database/Traits/Sortable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/Traits/Sortable.php -------------------------------------------------------------------------------- /src/Litepie/Database/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Database/composer.json -------------------------------------------------------------------------------- /src/Litepie/Filer/Exceptions/InvalidFileConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Exceptions/InvalidFileConfigException.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Exceptions/InvalidFileSizeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Exceptions/InvalidFileSizeException.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Exceptions/InvalidFileTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Exceptions/InvalidFileTypeException.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Filer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Filer.php -------------------------------------------------------------------------------- /src/Litepie/Filer/FilerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/FilerServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Http/Controllers/FileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Http/Controllers/FileController.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Templates/ExtraLarge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Templates/ExtraLarge.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Templates/ExtraSmall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Templates/ExtraSmall.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Templates/Large.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Templates/Large.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Templates/Medium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Templates/Medium.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Templates/Original.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Templates/Original.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Templates/Small.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Templates/Small.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Traits/FileDisplay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Traits/FileDisplay.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Traits/Filer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Traits/Filer.php -------------------------------------------------------------------------------- /src/Litepie/Filer/Traits/Uploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/Traits/Uploader.php -------------------------------------------------------------------------------- /src/Litepie/Filer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/composer.json -------------------------------------------------------------------------------- /src/Litepie/Filer/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/config.php -------------------------------------------------------------------------------- /src/Litepie/Filer/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/image.php -------------------------------------------------------------------------------- /src/Litepie/Filer/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/Filer/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Filer/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Form/Field/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Field/Attributes.php -------------------------------------------------------------------------------- /src/Litepie/Form/Field/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Field/Types.php -------------------------------------------------------------------------------- /src/Litepie/Form/Field/Types/Checkable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Field/Types/Checkable.php -------------------------------------------------------------------------------- /src/Litepie/Form/Field/Types/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Field/Types/Files.php -------------------------------------------------------------------------------- /src/Litepie/Form/Field/Types/InputGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Field/Types/InputGroup.php -------------------------------------------------------------------------------- /src/Litepie/Form/Field/Types/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Field/Types/Map.php -------------------------------------------------------------------------------- /src/Litepie/Form/Field/Types/Selectable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Field/Types/Selectable.php -------------------------------------------------------------------------------- /src/Litepie/Form/Fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Fields.php -------------------------------------------------------------------------------- /src/Litepie/Form/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Form.php -------------------------------------------------------------------------------- /src/Litepie/Form/FormInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/FormInterpreter.php -------------------------------------------------------------------------------- /src/Litepie/Form/FormServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/FormServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Form/Interfaces/FormsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Interfaces/FormsInterface.php -------------------------------------------------------------------------------- /src/Litepie/Form/Lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/Lists.php -------------------------------------------------------------------------------- /src/Litepie/Form/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/composer.json -------------------------------------------------------------------------------- /src/Litepie/Form/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/config.php -------------------------------------------------------------------------------- /src/Litepie/Form/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/helpers.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/_label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/_label.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/_wrapper.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/_wrapper.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/avatar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/avatar.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/checkbox.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/croper.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/croper.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/file.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/file.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/hidden.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/hidden.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/html_editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/html_editor.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/input.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/map.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/map.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/radios.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/radios.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/select.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/switch.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/switch.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/tags.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/tags.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/form/textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/form/textarea.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/list/amount.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/list/amount.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/list/badge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/list/badge.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/list/date.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/list/date.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/list/images.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/list/images.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/list/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/list/profile.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/bootstrap4/list/text.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/bootstrap4/list/text.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/foundation5/form/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/foundation5/form/input.blade.php -------------------------------------------------------------------------------- /src/Litepie/Form/resources/views/nude/form/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Form/resources/views/nude/form/input.blade.php -------------------------------------------------------------------------------- /src/Litepie/Foundation/Providers/ActionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Foundation/Providers/ActionServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Foundation/Providers/WorkflowServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Foundation/Providers/WorkflowServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Foundation/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Foundation/helpers.php -------------------------------------------------------------------------------- /src/Litepie/Hashids/HashidsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Hashids/HashidsServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Hashids/Traits/Hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Hashids/Traits/Hashids.php -------------------------------------------------------------------------------- /src/Litepie/Hashids/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Hashids/composer.json -------------------------------------------------------------------------------- /src/Litepie/Hashids/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Hashids/config.php -------------------------------------------------------------------------------- /src/Litepie/Http/Controllers/ActionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Controllers/ActionController.php -------------------------------------------------------------------------------- /src/Litepie/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /src/Litepie/Http/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Controllers/PublicController.php -------------------------------------------------------------------------------- /src/Litepie/Http/Controllers/ResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Controllers/ResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Http/Request/AbstractRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Request/AbstractRequest.php -------------------------------------------------------------------------------- /src/Litepie/Http/Response/AbstractResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Response/AbstractResponse.php -------------------------------------------------------------------------------- /src/Litepie/Http/Response/ActionResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Response/ActionResponse.php -------------------------------------------------------------------------------- /src/Litepie/Http/Response/AuthResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Response/AuthResponse.php -------------------------------------------------------------------------------- /src/Litepie/Http/Response/PublicResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Response/PublicResponse.php -------------------------------------------------------------------------------- /src/Litepie/Http/Response/ReportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Response/ReportResponse.php -------------------------------------------------------------------------------- /src/Litepie/Http/Response/ResourceResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Response/ResourceResponse.php -------------------------------------------------------------------------------- /src/Litepie/Http/Response/WorkflowResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Response/WorkflowResponse.php -------------------------------------------------------------------------------- /src/Litepie/Http/Traits/RequestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Traits/RequestTrait.php -------------------------------------------------------------------------------- /src/Litepie/Http/Traits/ThemeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Traits/ThemeTrait.php -------------------------------------------------------------------------------- /src/Litepie/Http/Traits/ViewTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/Traits/ViewTrait.php -------------------------------------------------------------------------------- /src/Litepie/Http/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Http/composer.json -------------------------------------------------------------------------------- /src/Litepie/Install/Events/EnvironmentSaved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Events/EnvironmentSaved.php -------------------------------------------------------------------------------- /src/Litepie/Install/Events/LaravelInstallerFinished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Events/LaravelInstallerFinished.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/DatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/DatabaseManager.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/EnvironmentManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/EnvironmentManager.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/FinalInstallManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/FinalInstallManager.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/InstalledFileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/InstalledFileManager.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/MigrationsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/MigrationsHelper.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/PermissionsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/PermissionsChecker.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/RequirementsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/RequirementsChecker.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/UserUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/UserUpdater.php -------------------------------------------------------------------------------- /src/Litepie/Install/Helpers/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Helpers/functions.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/DatabaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/DatabaseController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/EnvironmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/EnvironmentController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/FinalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/FinalController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/InstallCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/InstallCommands.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/InstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/InstallController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/PermissionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/PermissionsController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/RequirementsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/RequirementsController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/UpdateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/UpdateController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/Controllers/WelcomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/Controllers/WelcomeController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/DatabaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/DatabaseController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/EnvironmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/EnvironmentController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/FinalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/FinalController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/PermissionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/PermissionsController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/RequirementsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/RequirementsController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/UpdateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/UpdateController.php -------------------------------------------------------------------------------- /src/Litepie/Install/Http/WelcomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Http/WelcomeController.php -------------------------------------------------------------------------------- /src/Litepie/Install/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/InstallCommand.php -------------------------------------------------------------------------------- /src/Litepie/Install/InstallServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/InstallServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Installer.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Scripts/ConfigureDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Scripts/ConfigureDatabase.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Scripts/PackageMigrators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Scripts/PackageMigrators.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Scripts/PackageSeeders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Scripts/PackageSeeders.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Scripts/PackgeAssets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Scripts/PackgeAssets.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Scripts/ProtectInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Scripts/ProtectInstaller.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Scripts/SetAppKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Scripts/SetAppKey.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Scripts/SetSuperuserUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Scripts/SetSuperuserUser.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/SetupScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/SetupScript.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Traits/BlockMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Traits/BlockMessage.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Traits/SectionMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Traits/SectionMessage.php -------------------------------------------------------------------------------- /src/Litepie/Install/Installers/Writers/EnvFileWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Installers/Writers/EnvFileWriter.php -------------------------------------------------------------------------------- /src/Litepie/Install/Middleware/canInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Middleware/canInstall.php -------------------------------------------------------------------------------- /src/Litepie/Install/Middleware/canUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Middleware/canUpdate.php -------------------------------------------------------------------------------- /src/Litepie/Install/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Install/Traits/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/Traits/Install.php -------------------------------------------------------------------------------- /src/Litepie/Install/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/composer.json -------------------------------------------------------------------------------- /src/Litepie/Install/config/installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/config/installer.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/lang/en/messages.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/environment-classic.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/environment-classic.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/environment-wizard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/environment-wizard.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/environment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/environment.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/finished.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/finished.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/layouts/master-update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/layouts/master-update.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/permissions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/permissions.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/requirements.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/requirements.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/update/finished.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/update/finished.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/update/overview.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/update/overview.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/update/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/update/welcome.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /src/Litepie/Install/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Install/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Log/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/.travis.yml -------------------------------------------------------------------------------- /src/Litepie/Log/Database/migrations/2023_03_29_100001_create_log_actions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/Database/migrations/2023_03_29_100001_create_log_actions_table.php -------------------------------------------------------------------------------- /src/Litepie/Log/Database/migrations/2023_03_29_100001_create_log_activities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/Database/migrations/2023_03_29_100001_create_log_activities_table.php -------------------------------------------------------------------------------- /src/Litepie/Log/LogOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/LogOptions.php -------------------------------------------------------------------------------- /src/Litepie/Log/LogServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/LogServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Log/Models/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/Models/Activity.php -------------------------------------------------------------------------------- /src/Litepie/Log/Traits/LogsActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/Traits/LogsActivity.php -------------------------------------------------------------------------------- /src/Litepie/Log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/composer.json -------------------------------------------------------------------------------- /src/Litepie/Log/config/activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Log/config/activity.php -------------------------------------------------------------------------------- /src/Litepie/Master/Actions/MasterAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Actions/MasterAction.php -------------------------------------------------------------------------------- /src/Litepie/Master/Actions/MasterActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Actions/MasterActions.php -------------------------------------------------------------------------------- /src/Litepie/Master/Database/Seeders/MasterTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Database/Seeders/MasterTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/Master/Database/migrations/2023_03_28_100001_create_masters_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Database/migrations/2023_03_28_100001_create_masters_table.php -------------------------------------------------------------------------------- /src/Litepie/Master/Forms/Master.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Forms/Master.php -------------------------------------------------------------------------------- /src/Litepie/Master/Http/Controllers/MasterResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Http/Controllers/MasterResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Master/Http/Requests/MasterResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Http/Requests/MasterResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/Master/Http/Resources/MasterResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Http/Resources/MasterResource.php -------------------------------------------------------------------------------- /src/Litepie/Master/Http/Resources/MastersCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Http/Resources/MastersCollection.php -------------------------------------------------------------------------------- /src/Litepie/Master/Http/Resources/MastersResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Http/Resources/MastersResource.php -------------------------------------------------------------------------------- /src/Litepie/Master/Master.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Master.php -------------------------------------------------------------------------------- /src/Litepie/Master/MasterServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/MasterServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Master/Models/Master.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Models/Master.php -------------------------------------------------------------------------------- /src/Litepie/Master/Policies/MasterPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Policies/MasterPolicy.php -------------------------------------------------------------------------------- /src/Litepie/Master/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Master/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Master/Scopes/MasterPublicScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Scopes/MasterPublicScope.php -------------------------------------------------------------------------------- /src/Litepie/Master/Scopes/MasterResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/Scopes/MasterResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/Master/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/composer.json -------------------------------------------------------------------------------- /src/Litepie/Master/config/master.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/config/master.php -------------------------------------------------------------------------------- /src/Litepie/Master/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Master/resources/lang/en/master.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/lang/en/master.php -------------------------------------------------------------------------------- /src/Litepie/Master/resources/views/master/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/views/master/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/Master/resources/views/master/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/views/master/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Master/resources/views/master/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/views/master/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/Master/resources/views/master/masters.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/views/master/masters.blade.php -------------------------------------------------------------------------------- /src/Litepie/Master/resources/views/master/partials/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/views/master/partials/aside.blade.php -------------------------------------------------------------------------------- /src/Litepie/Master/resources/views/master/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/views/master/partials/form.blade.php -------------------------------------------------------------------------------- /src/Litepie/Master/resources/views/master/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/resources/views/master/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Master/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/Master/routes/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/routes/routes.php -------------------------------------------------------------------------------- /src/Litepie/Master/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Master/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Master/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Menu/Actions/MenuAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Actions/MenuAction.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Actions/MenuActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Actions/MenuActions.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Database/Seeders/MenuTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Database/Seeders/MenuTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Database/migrations/2023_03_28_100001_create_menus_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Database/migrations/2023_03_28_100001_create_menus_table.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Forms/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Forms/Menu.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Http/Controllers/MenuResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Http/Controllers/MenuResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Http/Controllers/MenuSubResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Http/Controllers/MenuSubResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Http/Requests/MenuResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Http/Requests/MenuResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Http/Resources/MenuResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Http/Resources/MenuResource.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Http/Resources/MenusCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Http/Resources/MenusCollection.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Http/Resources/MenusResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Http/Resources/MenusResource.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Menu.php -------------------------------------------------------------------------------- /src/Litepie/Menu/MenuServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/MenuServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Models/Menu.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Policies/MenuPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Policies/MenuPolicy.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Scopes/MenuPublicScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Scopes/MenuPublicScope.php -------------------------------------------------------------------------------- /src/Litepie/Menu/Scopes/MenuResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/Scopes/MenuResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/Menu/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/composer.json -------------------------------------------------------------------------------- /src/Litepie/Menu/config/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/config/menu.php -------------------------------------------------------------------------------- /src/Litepie/Menu/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/lang/en/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/lang/en/menu.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/lang/en/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/lang/en/package.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/list.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/menu/nestable.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/menu/nestable.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/menu/sub/nestable.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/menu/sub/nestable.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/new.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/partial/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/partial/menu.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/partial/submenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/partial/submenu.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/sub/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/sub/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/sub/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/sub/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/admin/sub/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/admin/sub/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/admin.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/client.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/client.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/default.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/footer.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/main.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/social.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/social.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/sub/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/sub/admin.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/sub/client.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/sub/client.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/sub/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/sub/default.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/sub/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/sub/footer.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/sub/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/sub/main.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/sub/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/sub/user.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/resources/views/menu/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/resources/views/menu/user.blade.php -------------------------------------------------------------------------------- /src/Litepie/Menu/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/Menu/routes/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/routes/routes.php -------------------------------------------------------------------------------- /src/Litepie/Menu/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Menu/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Menu/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Node/NodeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Node/NodeCollection.php -------------------------------------------------------------------------------- /src/Litepie/Node/Traits/NestedNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Node/Traits/NestedNode.php -------------------------------------------------------------------------------- /src/Litepie/Node/Traits/SimpleNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Node/Traits/SimpleNode.php -------------------------------------------------------------------------------- /src/Litepie/Node/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Node/composer.json -------------------------------------------------------------------------------- /src/Litepie/Notification/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/.travis.yml -------------------------------------------------------------------------------- /src/Litepie/Notification/Database/Seeders/NotificationTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Database/Seeders/NotificationTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Database/migrations/2023_03_29_100001_create_notification_templates_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Database/migrations/2023_03_29_100001_create_notification_templates_table.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Database/migrations/2023_03_29_100001_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Database/migrations/2023_03_29_100001_create_notifications_table.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Forms/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Forms/Notification.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Http/Controllers/NotificationResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Http/Controllers/NotificationResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Http/Requests/NotificationResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Http/Requests/NotificationResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Http/Resources/NotificationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Http/Resources/NotificationResource.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Http/Resources/NotificationsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Http/Resources/NotificationsCollection.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Http/Resources/NotificationsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Http/Resources/NotificationsResource.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Models/Notification.php -------------------------------------------------------------------------------- /src/Litepie/Notification/NotificationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/NotificationServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Notifications.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Notifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Notifier.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Policies/NotificationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Policies/NotificationPolicy.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Scopes/NotificationPublicScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Scopes/NotificationPublicScope.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Scopes/NotificationResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Scopes/NotificationResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/Notification/Traits/SendNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/Traits/SendNotification.php -------------------------------------------------------------------------------- /src/Litepie/Notification/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/composer.json -------------------------------------------------------------------------------- /src/Litepie/Notification/config/notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/config/notification.php -------------------------------------------------------------------------------- /src/Litepie/Notification/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/lang/en/notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/lang/en/notification.php -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/lang/en/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/lang/en/package.php -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/views/default/notification/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/views/default/notification/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/views/default/notification/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/views/default/notification/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/views/default/notification/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/views/default/notification/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/views/default/notification/partials/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/views/default/notification/partials/aside.blade.php -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/views/default/notification/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/views/default/notification/partials/form.blade.php -------------------------------------------------------------------------------- /src/Litepie/Notification/resources/views/default/notification/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/resources/views/default/notification/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Notification/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/Notification/routes/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/routes/routes.php -------------------------------------------------------------------------------- /src/Litepie/Notification/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Notification/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Notification/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Repository/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/BaseRepository.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Contracts/CacheableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Contracts/CacheableInterface.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Contracts/CriteriaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Contracts/CriteriaInterface.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Contracts/Presentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Contracts/Presentable.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Contracts/PresenterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Contracts/PresenterInterface.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Contracts/RepositoryCriteriaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Contracts/RepositoryCriteriaInterface.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Contracts/RepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Contracts/RepositoryInterface.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Contracts/Transformable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Contracts/Transformable.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Criteria/RequestCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Criteria/RequestCriteria.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Eloquent/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Eloquent/BaseRepository.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Exceptions/RepositoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Exceptions/RepositoryException.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Exceptions/RepositoryModelException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Exceptions/RepositoryModelException.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Filter/RequestFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Filter/RequestFilter.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Interfaces/FilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Interfaces/FilterInterface.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Interfaces/RepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Interfaces/RepositoryInterface.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Presenter/FractalPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Presenter/FractalPresenter.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Presenter/ModelFractalPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Presenter/ModelFractalPresenter.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Presenter/Presenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Presenter/Presenter.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Providers/LumenRepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Providers/LumenRepositoryServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Providers/RepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Providers/RepositoryServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Repository/RepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/RepositoryServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Traits/CacheableRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Traits/CacheableRepository.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Traits/PresentableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Traits/PresentableTrait.php -------------------------------------------------------------------------------- /src/Litepie/Repository/Traits/TransformableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/Traits/TransformableTrait.php -------------------------------------------------------------------------------- /src/Litepie/Repository/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/composer.json -------------------------------------------------------------------------------- /src/Litepie/Repository/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Repository/config.php -------------------------------------------------------------------------------- /src/Litepie/Role/Actions/PermissionAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Actions/PermissionAction.php -------------------------------------------------------------------------------- /src/Litepie/Role/Actions/PermissionActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Actions/PermissionActions.php -------------------------------------------------------------------------------- /src/Litepie/Role/Actions/RoleAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Actions/RoleAction.php -------------------------------------------------------------------------------- /src/Litepie/Role/Actions/RoleActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Actions/RoleActions.php -------------------------------------------------------------------------------- /src/Litepie/Role/Database/Seeders/RoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Database/Seeders/RoleTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/Role/Database/migrations/2017_11_09_100001_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Database/migrations/2017_11_09_100001_create_roles_table.php -------------------------------------------------------------------------------- /src/Litepie/Role/Database/migrations/2017_11_09_100002_create_permissions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Database/migrations/2017_11_09_100002_create_permissions_table.php -------------------------------------------------------------------------------- /src/Litepie/Role/Forms/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Forms/Permission.php -------------------------------------------------------------------------------- /src/Litepie/Role/Forms/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Forms/Role.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Controllers/PermissionResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Controllers/PermissionResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Controllers/RoleResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Controllers/RoleResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Requests/PermissionResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Requests/PermissionResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Requests/RoleResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Requests/RoleResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Resources/PermissionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Resources/PermissionResource.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Resources/PermissionsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Resources/PermissionsCollection.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Resources/PermissionsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Resources/PermissionsResource.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Resources/RoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Resources/RoleResource.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Resources/RolesCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Resources/RolesCollection.php -------------------------------------------------------------------------------- /src/Litepie/Role/Http/Resources/RolesResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Http/Resources/RolesResource.php -------------------------------------------------------------------------------- /src/Litepie/Role/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Models/Permission.php -------------------------------------------------------------------------------- /src/Litepie/Role/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Models/Role.php -------------------------------------------------------------------------------- /src/Litepie/Role/Policies/PermissionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Policies/PermissionPolicy.php -------------------------------------------------------------------------------- /src/Litepie/Role/Policies/RolePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Policies/RolePolicy.php -------------------------------------------------------------------------------- /src/Litepie/Role/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Role/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Role/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Role.php -------------------------------------------------------------------------------- /src/Litepie/Role/RoleServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/RoleServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Role/Scopes/PermissionResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Scopes/PermissionResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/Role/Scopes/RoleResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Scopes/RoleResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/Role/Traits/CheckRoleAndPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Traits/CheckRoleAndPermission.php -------------------------------------------------------------------------------- /src/Litepie/Role/Traits/HasRoleAndPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Traits/HasRoleAndPermission.php -------------------------------------------------------------------------------- /src/Litepie/Role/Traits/PermissionHasRelations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Traits/PermissionHasRelations.php -------------------------------------------------------------------------------- /src/Litepie/Role/Traits/RoleHasRelations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/Traits/RoleHasRelations.php -------------------------------------------------------------------------------- /src/Litepie/Role/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/composer.json -------------------------------------------------------------------------------- /src/Litepie/Role/config/role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/config/role.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/lang/en/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/lang/en/package.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/lang/en/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/lang/en/permission.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/lang/en/role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/lang/en/role.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/permission/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/permission/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/permission/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/permission/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/permission/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/permission/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/permission/partials/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/permission/partials/aside.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/permission/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/permission/partials/form.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/permission/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/permission/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/role/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/role/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/role/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/role/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/role/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/role/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/role/partials/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/role/partials/aside.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/role/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/role/partials/form.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/resources/views/default/role/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/resources/views/default/role/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Role/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/Role/routes/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/routes/routes.php -------------------------------------------------------------------------------- /src/Litepie/Role/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Role/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Role/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Setting/Actions/SettingActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Actions/SettingActions.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Database/Seeders/SettingTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Database/Seeders/SettingTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Database/migrations/2023_03_28_100001_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Database/migrations/2023_03_28_100001_create_settings_table.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Forms/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Forms/Setting.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Http/Controllers/SettingResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Http/Controllers/SettingResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Http/Requests/SettingResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Http/Requests/SettingResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Http/Resources/SettingResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Http/Resources/SettingResource.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Http/Resources/SettingsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Http/Resources/SettingsCollection.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Http/Resources/SettingsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Http/Resources/SettingsResource.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Models/Setting.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Policies/SettingPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Policies/SettingPolicy.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Scopes/SettingGroupScope.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Setting/Scopes/SettingPublicScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Scopes/SettingPublicScope.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Scopes/SettingResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Scopes/SettingResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Setting.php -------------------------------------------------------------------------------- /src/Litepie/Setting/SettingServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/SettingServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Stores/SettingEloquentStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Stores/SettingEloquentStore.php -------------------------------------------------------------------------------- /src/Litepie/Setting/Stores/SettingStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/Stores/SettingStore.php -------------------------------------------------------------------------------- /src/Litepie/Setting/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/composer.json -------------------------------------------------------------------------------- /src/Litepie/Setting/config/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/config/setting.php -------------------------------------------------------------------------------- /src/Litepie/Setting/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/helpers.php -------------------------------------------------------------------------------- /src/Litepie/Setting/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Setting/resources/lang/en/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/resources/lang/en/setting.php -------------------------------------------------------------------------------- /src/Litepie/Setting/resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/resources/views/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Setting/resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/resources/views/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/Setting/resources/views/partial/0.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/resources/views/partial/0.blade.php -------------------------------------------------------------------------------- /src/Litepie/Setting/resources/views/partial/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/resources/views/partial/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Setting/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/Setting/routes/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/routes/routes.php -------------------------------------------------------------------------------- /src/Litepie/Setting/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Setting/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Setting/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Setting/todo.md -------------------------------------------------------------------------------- /src/Litepie/States/Database/migrations/2023_03_28_100001_create_states_histories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Database/migrations/2023_03_28_100001_create_states_histories_table.php -------------------------------------------------------------------------------- /src/Litepie/States/Database/migrations/2023_03_28_100001_create_states_pending_transitions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Database/migrations/2023_03_28_100001_create_states_pending_transitions_table.php -------------------------------------------------------------------------------- /src/Litepie/States/Exceptions/InvalidStartingStateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Exceptions/InvalidStartingStateException.php -------------------------------------------------------------------------------- /src/Litepie/States/Exceptions/TransitionNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Exceptions/TransitionNotAllowedException.php -------------------------------------------------------------------------------- /src/Litepie/States/Jobs/PendingTransitionExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Jobs/PendingTransitionExecutor.php -------------------------------------------------------------------------------- /src/Litepie/States/Jobs/PendingTransitionsDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Jobs/PendingTransitionsDispatcher.php -------------------------------------------------------------------------------- /src/Litepie/States/Models/PendingTransition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Models/PendingTransition.php -------------------------------------------------------------------------------- /src/Litepie/States/Models/StateHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Models/StateHistory.php -------------------------------------------------------------------------------- /src/Litepie/States/StateMachines/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/StateMachines/State.php -------------------------------------------------------------------------------- /src/Litepie/States/StateMachines/StateMachine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/StateMachines/StateMachine.php -------------------------------------------------------------------------------- /src/Litepie/States/StatesServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/StatesServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/States/Traits/HasStateMachines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/Traits/HasStateMachines.php -------------------------------------------------------------------------------- /src/Litepie/States/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/States/composer.json -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Facade.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Filer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Filer.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Form.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Hashids.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Master.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Master.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Menu.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Notification.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Role.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Setting.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Theme.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Trans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Trans.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/User.php -------------------------------------------------------------------------------- /src/Litepie/Support/Facades/Workflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Support/Facades/Workflow.php -------------------------------------------------------------------------------- /src/Litepie/Team/Actions/TeamAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Actions/TeamAction.php -------------------------------------------------------------------------------- /src/Litepie/Team/Actions/TeamActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Actions/TeamActions.php -------------------------------------------------------------------------------- /src/Litepie/Team/Actions/TeamWorkflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Actions/TeamWorkflow.php -------------------------------------------------------------------------------- /src/Litepie/Team/Database/Seeders/TeamTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Database/Seeders/TeamTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/Team/Database/migrations/2023_03_28_100001_create_teams_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Database/migrations/2023_03_28_100001_create_teams_table.php -------------------------------------------------------------------------------- /src/Litepie/Team/Facades/Teams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Facades/Teams.php -------------------------------------------------------------------------------- /src/Litepie/Team/Forms/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Forms/Team.php -------------------------------------------------------------------------------- /src/Litepie/Team/Http/Controllers/TeamResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Http/Controllers/TeamResourceController.php -------------------------------------------------------------------------------- /src/Litepie/Team/Http/Requests/TeamResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Http/Requests/TeamResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/Team/Http/Resources/TeamResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Http/Resources/TeamResource.php -------------------------------------------------------------------------------- /src/Litepie/Team/Http/Resources/TeamsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Http/Resources/TeamsCollection.php -------------------------------------------------------------------------------- /src/Litepie/Team/Http/Resources/TeamsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Http/Resources/TeamsResource.php -------------------------------------------------------------------------------- /src/Litepie/Team/Models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Models/Team.php -------------------------------------------------------------------------------- /src/Litepie/Team/Models/TeamUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Models/TeamUser.php -------------------------------------------------------------------------------- /src/Litepie/Team/Policies/TeamPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Policies/TeamPolicy.php -------------------------------------------------------------------------------- /src/Litepie/Team/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Team/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Team/Scopes/TeamPublicScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Scopes/TeamPublicScope.php -------------------------------------------------------------------------------- /src/Litepie/Team/Scopes/TeamResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Scopes/TeamResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/Team/TeamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/TeamServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Team/Teams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/Teams.php -------------------------------------------------------------------------------- /src/Litepie/Team/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/composer.json -------------------------------------------------------------------------------- /src/Litepie/Team/config/team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/config/team.php -------------------------------------------------------------------------------- /src/Litepie/Team/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Team/resources/lang/en/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/lang/en/package.php -------------------------------------------------------------------------------- /src/Litepie/Team/resources/lang/en/team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/lang/en/team.php -------------------------------------------------------------------------------- /src/Litepie/Team/resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/views/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/Team/resources/views/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/views/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/Team/resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/views/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/Team/resources/views/partials/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/views/partials/aside.blade.php -------------------------------------------------------------------------------- /src/Litepie/Team/resources/views/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/views/partials/form.blade.php -------------------------------------------------------------------------------- /src/Litepie/Team/resources/views/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/resources/views/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/Team/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/Team/routes/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/routes/routes.php -------------------------------------------------------------------------------- /src/Litepie/Team/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Team/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/Team/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Theme/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/Asset.php -------------------------------------------------------------------------------- /src/Litepie/Theme/AssetContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/AssetContainer.php -------------------------------------------------------------------------------- /src/Litepie/Theme/Console/ThemePublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/Console/ThemePublishCommand.php -------------------------------------------------------------------------------- /src/Litepie/Theme/Exceptions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Theme/Exceptions/UnknownLayoutFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/Exceptions/UnknownLayoutFileException.php -------------------------------------------------------------------------------- /src/Litepie/Theme/Exceptions/UnknownPartialFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/Exceptions/UnknownPartialFileException.php -------------------------------------------------------------------------------- /src/Litepie/Theme/Exceptions/UnknownThemeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/Exceptions/UnknownThemeException.php -------------------------------------------------------------------------------- /src/Litepie/Theme/Exceptions/UnknownViewFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/Exceptions/UnknownViewFileException.php -------------------------------------------------------------------------------- /src/Litepie/Theme/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/Theme.php -------------------------------------------------------------------------------- /src/Litepie/Theme/ThemeAndViews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/ThemeAndViews.php -------------------------------------------------------------------------------- /src/Litepie/Theme/ThemeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/ThemeServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Theme/ThemeViewFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/ThemeViewFinder.php -------------------------------------------------------------------------------- /src/Litepie/Theme/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/composer.json -------------------------------------------------------------------------------- /src/Litepie/Theme/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/config.php -------------------------------------------------------------------------------- /src/Litepie/Theme/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Theme/helpers.php -------------------------------------------------------------------------------- /src/Litepie/Trans/Http/Middleware/LocalizeRoutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Trans/Http/Middleware/LocalizeRoutes.php -------------------------------------------------------------------------------- /src/Litepie/Trans/LanguageNegotiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Trans/LanguageNegotiator.php -------------------------------------------------------------------------------- /src/Litepie/Trans/Traits/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Trans/Traits/Translatable.php -------------------------------------------------------------------------------- /src/Litepie/Trans/Trans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Trans/Trans.php -------------------------------------------------------------------------------- /src/Litepie/Trans/TransServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Trans/TransServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Trans/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Trans/composer.json -------------------------------------------------------------------------------- /src/Litepie/Trans/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Trans/config.php -------------------------------------------------------------------------------- /src/Litepie/User/Actions/ClientAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Actions/ClientAction.php -------------------------------------------------------------------------------- /src/Litepie/User/Actions/ClientActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Actions/ClientActions.php -------------------------------------------------------------------------------- /src/Litepie/User/Actions/UserAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Actions/UserAction.php -------------------------------------------------------------------------------- /src/Litepie/User/Actions/UserActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Actions/UserActions.php -------------------------------------------------------------------------------- /src/Litepie/User/Database/Seeders/ClientTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Database/Seeders/ClientTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/User/Database/Seeders/UserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Database/Seeders/UserTableSeeder.php -------------------------------------------------------------------------------- /src/Litepie/User/Database/migrations/2025_01_05_100001_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Database/migrations/2025_01_05_100001_create_users_table.php -------------------------------------------------------------------------------- /src/Litepie/User/Database/migrations/2025_01_05_100002_create_clients_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Database/migrations/2025_01_05_100002_create_clients_table.php -------------------------------------------------------------------------------- /src/Litepie/User/Forms/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Forms/Client.php -------------------------------------------------------------------------------- /src/Litepie/User/Forms/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Forms/User.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Controllers/ClientResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Controllers/ClientResourceController.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Controllers/UserActionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Controllers/UserActionsController.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Controllers/UserResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Controllers/UserResourceController.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Requests/ClientResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Requests/ClientResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Requests/UserActionsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Requests/UserActionsRequest.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Requests/UserResourceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Requests/UserResourceRequest.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Resources/ClientResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Resources/ClientResource.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Resources/ClientsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Resources/ClientsCollection.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Resources/ClientsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Resources/ClientsResource.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Resources/UsersCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Resources/UsersCollection.php -------------------------------------------------------------------------------- /src/Litepie/User/Http/Resources/UsersResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Http/Resources/UsersResource.php -------------------------------------------------------------------------------- /src/Litepie/User/Interfaces/UserPolicyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Interfaces/UserPolicyInterface.php -------------------------------------------------------------------------------- /src/Litepie/User/Models/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Models/Client.php -------------------------------------------------------------------------------- /src/Litepie/User/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Models/User.php -------------------------------------------------------------------------------- /src/Litepie/User/Notifications/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Notifications/ResetPassword.php -------------------------------------------------------------------------------- /src/Litepie/User/Notifications/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Notifications/VerifyEmail.php -------------------------------------------------------------------------------- /src/Litepie/User/Policies/ClientPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Policies/ClientPolicy.php -------------------------------------------------------------------------------- /src/Litepie/User/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Policies/UserPolicy.php -------------------------------------------------------------------------------- /src/Litepie/User/Providers/ActionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Providers/ActionServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/User/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/User/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/User/Scopes/ClientPublicScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Scopes/ClientPublicScope.php -------------------------------------------------------------------------------- /src/Litepie/User/Scopes/ClientResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Scopes/ClientResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/User/Scopes/UserPublicScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Scopes/UserPublicScope.php -------------------------------------------------------------------------------- /src/Litepie/User/Scopes/UserResourceScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Scopes/UserResourceScope.php -------------------------------------------------------------------------------- /src/Litepie/User/Traits/Auth/SocialAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Traits/Auth/SocialAuthentication.php -------------------------------------------------------------------------------- /src/Litepie/User/Traits/CanResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Traits/CanResetPassword.php -------------------------------------------------------------------------------- /src/Litepie/User/Traits/RoutesAndGuards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Traits/RoutesAndGuards.php -------------------------------------------------------------------------------- /src/Litepie/User/Traits/UserProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/Traits/UserProfile.php -------------------------------------------------------------------------------- /src/Litepie/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/User.php -------------------------------------------------------------------------------- /src/Litepie/User/UserServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/UserServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/User/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/composer.json -------------------------------------------------------------------------------- /src/Litepie/User/config/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/config/user.php -------------------------------------------------------------------------------- /src/Litepie/User/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/User/resources/lang/en/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/lang/en/client.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/lang/en/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/lang/en/package.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/lang/en/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/lang/en/user.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/client/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/client/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/client/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/client/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/client/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/client/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/client/partials/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/client/partials/aside.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/client/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/client/partials/form.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/client/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/client/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/user/create.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/user/edit.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/user/index.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/user/partials/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/user/partials/aside.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/user/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/user/partials/form.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/resources/views/user/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/resources/views/user/show.blade.php -------------------------------------------------------------------------------- /src/Litepie/User/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/routes/api.php -------------------------------------------------------------------------------- /src/Litepie/User/routes/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/routes/routes.php -------------------------------------------------------------------------------- /src/Litepie/User/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/User/routes/web.php -------------------------------------------------------------------------------- /src/Litepie/User/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Litepie/Validator/ReCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Validator/ReCaptcha.php -------------------------------------------------------------------------------- /src/Litepie/Validator/ValidatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Validator/ValidatorServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Validator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Validator/composer.json -------------------------------------------------------------------------------- /src/Litepie/Workflow/Commands/WorkflowDumpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Commands/WorkflowDumpCommand.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/AnnounceEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/AnnounceEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/BaseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/BaseEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/CompletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/CompletedEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/DispatcherAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/DispatcherAdapter.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/EnterEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/EnterEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/EnteredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/EnteredEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/GuardEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/GuardEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/LeaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/LeaveEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/TransitionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/TransitionEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Events/WorkflowEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Events/WorkflowEvent.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Exceptions/DuplicateWorkflowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Exceptions/DuplicateWorkflowException.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Exceptions/RegistryNotTrackedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Exceptions/RegistryNotTrackedException.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/MarkingStores/EloquentMarkingStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/MarkingStores/EloquentMarkingStore.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/README.md -------------------------------------------------------------------------------- /src/Litepie/Workflow/Traits/WorkflowControllerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Traits/WorkflowControllerTrait.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Traits/WorkflowTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Traits/WorkflowTrait.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Traits/Workflowable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Traits/Workflowable.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/Workflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/Workflow.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/WorkflowRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/WorkflowRegistry.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/WorkflowServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/WorkflowServiceProvider.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/composer.json -------------------------------------------------------------------------------- /src/Litepie/Workflow/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/config/config.php -------------------------------------------------------------------------------- /src/Litepie/Workflow/config/sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/src/Litepie/Workflow/config/sample.php -------------------------------------------------------------------------------- /styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LavaLite/framework/HEAD/styleci.yml --------------------------------------------------------------------------------