├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── MainHelper.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ └── CourseTagController.php │ │ ├── Controller.php │ │ └── SupportController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── Check.php │ │ ├── Form │ │ │ └── Example.php │ │ └── Table │ │ │ └── Main.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Example.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── RouteServiceProvider.php ├── Repository │ ├── Course.php │ ├── CourseDetail.php │ ├── CourseGroup.php │ ├── CourseRead.php │ ├── CourseTag.php │ ├── CourseType.php │ ├── Example.php │ ├── FileType.php │ ├── Path.php │ ├── Repository.php │ ├── Room.php │ ├── RoomPath.php │ ├── Status.php │ ├── Tag.php │ ├── User.php │ └── UserHaveCourse.php └── View │ └── Components │ ├── AppLayout.php │ ├── GuestLayout.php │ └── MasifDashboard.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── colors.css ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── helpers.php ├── jetstream.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── view.php └── wink.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_10_23_022624_create_sessions_table.php │ ├── 2022_12_03_131022_update_add_role_users.php │ ├── 2022_12_03_131024_create_statuses.php │ └── 2022_12_23_075140_create_examples.php └── seeders │ └── DatabaseSeeder.php ├── database_note ├── lang └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── masif-dashboard │ ├── asset │ │ ├── img1.png │ │ ├── img2.png │ │ ├── img3.png │ │ └── img4.png │ ├── css │ │ └── tailwind.css │ ├── images │ │ ├── avatar-1.jpg │ │ ├── avatar.jpg │ │ ├── cover-2.jpg │ │ ├── cover-3.jpg │ │ ├── cover-4.jpg │ │ ├── cover.jpg │ │ └── ilustration-1.png │ └── js │ │ └── colors.js ├── robots.txt └── vendor │ ├── apexchart │ ├── apexcharts.amd.js │ ├── apexcharts.amd.js.LICENSE.txt │ ├── apexcharts.common.js │ ├── apexcharts.css │ ├── apexcharts.esm.js │ ├── apexcharts.js │ ├── apexcharts.min.js │ └── locales │ │ ├── ar.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── et.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── hy.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ka.json │ │ ├── ko.json │ │ ├── lt.json │ │ ├── lv.json │ │ ├── nb.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt-br.json │ │ ├── pt.json │ │ ├── rs.json │ │ ├── ru.json │ │ ├── se.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sq.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── ua.json │ │ ├── zh-cn.json │ │ └── zh-tw.json │ ├── bootstrap.min.css │ ├── calendar │ ├── app.js │ ├── calendars.js │ ├── chance.min.js │ ├── index.global.js │ ├── index.global.min.js │ ├── inital.js │ ├── moment.min.js │ ├── schedules.js │ ├── tui-calendar.js │ ├── tui-code-snippet.min.js │ ├── tui-date-picker.min.js │ └── tui-time-picker.min.js │ ├── chart.js │ ├── LICENSE.md │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── dist │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.css │ │ ├── Chart.js │ │ ├── Chart.min.css │ │ └── Chart.min.js │ └── package.json │ ├── datepicker │ ├── date-picker.css │ ├── date-picker.custom.css │ ├── date-time-picker │ │ ├── datetimepicker.custom.js │ │ ├── moment.min.js │ │ └── tempusdominus-bootstrap-4.min.js │ ├── datepicker.custom.js │ ├── datepicker.en.js │ ├── datepicker.js │ └── daterange-picker │ │ ├── daterange-picker.custom.js │ │ ├── daterangepicker.js │ │ └── moment.min.js │ ├── mathquill │ ├── font │ │ ├── Symbola-basic.eot │ │ ├── Symbola-basic.ttf │ │ ├── Symbola-basic.woff │ │ ├── Symbola-basic.woff2 │ │ ├── Symbola.eot │ │ ├── Symbola.otf │ │ ├── Symbola.svg │ │ ├── Symbola.ttf │ │ ├── Symbola.woff │ │ └── Symbola.woff2 │ ├── matheditor.css │ ├── matheditor.js │ ├── mathquill.css │ └── mathquill.min.js │ ├── select2 │ ├── select2.min.css │ └── select2.min.js │ ├── sweetalert │ └── sweetalert.min.js │ └── tinymce │ ├── dark.css │ └── light.css ├── resources ├── css │ ├── app.css │ └── colors.css ├── js │ ├── app.js │ └── bootstrap.js ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── button-primary.blade.php │ ├── calendar.blade.php │ ├── chart-component │ │ ├── non-time-series.blade.php │ │ └── time-series.blade.php │ ├── chart.blade.php │ ├── data-table-component │ │ └── sort-icon.blade.php │ ├── data-table.blade.php │ ├── form-button.blade.php │ ├── form-generator-component │ │ ├── editor.blade.php │ │ ├── input.blade.php │ │ ├── select.blade.php │ │ ├── select2.blade.php │ │ └── textarea.blade.php │ └── form-generator.blade.php │ ├── dashboard.blade.php │ ├── index.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ ├── masif-dashboard.blade.php │ └── masif-dashboard │ │ ├── navbar.blade.php │ │ ├── panel.blade.php │ │ └── sidebar.blade.php │ ├── livewire │ ├── check.blade.php │ └── form │ │ └── example.blade.php │ ├── navigation-menu.blade.php │ ├── pages │ ├── admin │ │ └── example │ │ │ ├── form-generator.blade.php │ │ │ └── table-generator.blade.php │ └── dashboard.blade.php │ ├── policy.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ ├── terms.blade.php │ ├── vendor │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── bootstrap-5.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ ├── simple-bootstrap-5.blade.php │ │ ├── simple-default.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ApiTokenPermissionsTest.php │ ├── AuthenticationTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── ProfileInformationTest.php │ ├── RegistrationTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ └── UpdatePasswordTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/MainHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Helpers/MainHelper.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CourseTagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Controllers/Admin/CourseTagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/SupportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Controllers/SupportController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Livewire/Check.php -------------------------------------------------------------------------------- /app/Http/Livewire/Form/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Livewire/Form/Example.php -------------------------------------------------------------------------------- /app/Http/Livewire/Table/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Livewire/Table/Main.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Models/Example.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repository/Course.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/Course.php -------------------------------------------------------------------------------- /app/Repository/CourseDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/CourseDetail.php -------------------------------------------------------------------------------- /app/Repository/CourseGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/CourseGroup.php -------------------------------------------------------------------------------- /app/Repository/CourseRead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/CourseRead.php -------------------------------------------------------------------------------- /app/Repository/CourseTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/CourseTag.php -------------------------------------------------------------------------------- /app/Repository/CourseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/CourseType.php -------------------------------------------------------------------------------- /app/Repository/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/Example.php -------------------------------------------------------------------------------- /app/Repository/FileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/FileType.php -------------------------------------------------------------------------------- /app/Repository/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/Path.php -------------------------------------------------------------------------------- /app/Repository/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/Repository.php -------------------------------------------------------------------------------- /app/Repository/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/Room.php -------------------------------------------------------------------------------- /app/Repository/RoomPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/RoomPath.php -------------------------------------------------------------------------------- /app/Repository/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/Status.php -------------------------------------------------------------------------------- /app/Repository/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/Tag.php -------------------------------------------------------------------------------- /app/Repository/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/User.php -------------------------------------------------------------------------------- /app/Repository/UserHaveCourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/Repository/UserHaveCourse.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/View/Components/MasifDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/app/View/Components/MasifDashboard.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/colors.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/helpers.php -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/view.php -------------------------------------------------------------------------------- /config/wink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/config/wink.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2022_10_23_022624_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2022_10_23_022624_create_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2022_12_03_131022_update_add_role_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2022_12_03_131022_update_add_role_users.php -------------------------------------------------------------------------------- /database/migrations/2022_12_03_131024_create_statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2022_12_03_131024_create_statuses.php -------------------------------------------------------------------------------- /database/migrations/2022_12_23_075140_create_examples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/migrations/2022_12_23_075140_create_examples.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database_note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/database_note -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/masif-dashboard/asset/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/asset/img1.png -------------------------------------------------------------------------------- /public/masif-dashboard/asset/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/asset/img2.png -------------------------------------------------------------------------------- /public/masif-dashboard/asset/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/asset/img3.png -------------------------------------------------------------------------------- /public/masif-dashboard/asset/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/asset/img4.png -------------------------------------------------------------------------------- /public/masif-dashboard/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/css/tailwind.css -------------------------------------------------------------------------------- /public/masif-dashboard/images/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/images/avatar-1.jpg -------------------------------------------------------------------------------- /public/masif-dashboard/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/images/avatar.jpg -------------------------------------------------------------------------------- /public/masif-dashboard/images/cover-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/images/cover-2.jpg -------------------------------------------------------------------------------- /public/masif-dashboard/images/cover-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/images/cover-3.jpg -------------------------------------------------------------------------------- /public/masif-dashboard/images/cover-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/images/cover-4.jpg -------------------------------------------------------------------------------- /public/masif-dashboard/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/images/cover.jpg -------------------------------------------------------------------------------- /public/masif-dashboard/images/ilustration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/images/ilustration-1.png -------------------------------------------------------------------------------- /public/masif-dashboard/js/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/masif-dashboard/js/colors.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/apexchart/apexcharts.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/apexcharts.amd.js -------------------------------------------------------------------------------- /public/vendor/apexchart/apexcharts.amd.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/apexcharts.amd.js.LICENSE.txt -------------------------------------------------------------------------------- /public/vendor/apexchart/apexcharts.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/apexcharts.common.js -------------------------------------------------------------------------------- /public/vendor/apexchart/apexcharts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/apexcharts.css -------------------------------------------------------------------------------- /public/vendor/apexchart/apexcharts.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/apexcharts.esm.js -------------------------------------------------------------------------------- /public/vendor/apexchart/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/apexcharts.js -------------------------------------------------------------------------------- /public/vendor/apexchart/apexcharts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/apexcharts.min.js -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/ar.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/ca.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/cs.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/de.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/el.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/en.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/es.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/et.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/fa.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/fi.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/fr.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/he.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/hi.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/hr.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/hu.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/hy.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/id.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/it.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/ja.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/ka.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/ko.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/lt.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/lv.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/nb.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/nl.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/pl.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/pt-br.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/pt.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/rs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/rs.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/ru.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/se.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/sk.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/sl.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/sq.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/th.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/tr.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/ua.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/zh-cn.json -------------------------------------------------------------------------------- /public/vendor/apexchart/locales/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/apexchart/locales/zh-tw.json -------------------------------------------------------------------------------- /public/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /public/vendor/calendar/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/app.js -------------------------------------------------------------------------------- /public/vendor/calendar/calendars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/calendars.js -------------------------------------------------------------------------------- /public/vendor/calendar/chance.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/chance.min.js -------------------------------------------------------------------------------- /public/vendor/calendar/index.global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/index.global.js -------------------------------------------------------------------------------- /public/vendor/calendar/index.global.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/index.global.min.js -------------------------------------------------------------------------------- /public/vendor/calendar/inital.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/inital.js -------------------------------------------------------------------------------- /public/vendor/calendar/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/moment.min.js -------------------------------------------------------------------------------- /public/vendor/calendar/schedules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/schedules.js -------------------------------------------------------------------------------- /public/vendor/calendar/tui-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/tui-calendar.js -------------------------------------------------------------------------------- /public/vendor/calendar/tui-code-snippet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/tui-code-snippet.min.js -------------------------------------------------------------------------------- /public/vendor/calendar/tui-date-picker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/tui-date-picker.min.js -------------------------------------------------------------------------------- /public/vendor/calendar/tui-time-picker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/calendar/tui-time-picker.min.js -------------------------------------------------------------------------------- /public/vendor/chart.js/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/LICENSE.md -------------------------------------------------------------------------------- /public/vendor/chart.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/README.md -------------------------------------------------------------------------------- /public/vendor/chart.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/bower.json -------------------------------------------------------------------------------- /public/vendor/chart.js/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/composer.json -------------------------------------------------------------------------------- /public/vendor/chart.js/dist/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/dist/Chart.bundle.js -------------------------------------------------------------------------------- /public/vendor/chart.js/dist/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/dist/Chart.bundle.min.js -------------------------------------------------------------------------------- /public/vendor/chart.js/dist/Chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/dist/Chart.css -------------------------------------------------------------------------------- /public/vendor/chart.js/dist/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/dist/Chart.js -------------------------------------------------------------------------------- /public/vendor/chart.js/dist/Chart.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/dist/Chart.min.css -------------------------------------------------------------------------------- /public/vendor/chart.js/dist/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/dist/Chart.min.js -------------------------------------------------------------------------------- /public/vendor/chart.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/chart.js/package.json -------------------------------------------------------------------------------- /public/vendor/datepicker/date-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/date-picker.css -------------------------------------------------------------------------------- /public/vendor/datepicker/date-picker.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/date-picker.custom.css -------------------------------------------------------------------------------- /public/vendor/datepicker/date-time-picker/datetimepicker.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/date-time-picker/datetimepicker.custom.js -------------------------------------------------------------------------------- /public/vendor/datepicker/date-time-picker/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/date-time-picker/moment.min.js -------------------------------------------------------------------------------- /public/vendor/datepicker/date-time-picker/tempusdominus-bootstrap-4.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/datepicker/datepicker.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/datepicker.custom.js -------------------------------------------------------------------------------- /public/vendor/datepicker/datepicker.en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/datepicker.en.js -------------------------------------------------------------------------------- /public/vendor/datepicker/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/datepicker.js -------------------------------------------------------------------------------- /public/vendor/datepicker/daterange-picker/daterange-picker.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/daterange-picker/daterange-picker.custom.js -------------------------------------------------------------------------------- /public/vendor/datepicker/daterange-picker/daterangepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/daterange-picker/daterangepicker.js -------------------------------------------------------------------------------- /public/vendor/datepicker/daterange-picker/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/datepicker/daterange-picker/moment.min.js -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola-basic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola-basic.eot -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola-basic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola-basic.ttf -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola-basic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola-basic.woff -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola-basic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola-basic.woff2 -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola.eot -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola.otf -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola.svg -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola.ttf -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola.woff -------------------------------------------------------------------------------- /public/vendor/mathquill/font/Symbola.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/font/Symbola.woff2 -------------------------------------------------------------------------------- /public/vendor/mathquill/matheditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/matheditor.css -------------------------------------------------------------------------------- /public/vendor/mathquill/matheditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/matheditor.js -------------------------------------------------------------------------------- /public/vendor/mathquill/mathquill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/mathquill.css -------------------------------------------------------------------------------- /public/vendor/mathquill/mathquill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/mathquill/mathquill.min.js -------------------------------------------------------------------------------- /public/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /public/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /public/vendor/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /public/vendor/tinymce/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/tinymce/dark.css -------------------------------------------------------------------------------- /public/vendor/tinymce/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/public/vendor/tinymce/light.css -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/css/colors.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/markdown/policy.md -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/markdown/terms.md -------------------------------------------------------------------------------- /resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/button-primary.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/button-primary.blade.php -------------------------------------------------------------------------------- /resources/views/components/calendar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/calendar.blade.php -------------------------------------------------------------------------------- /resources/views/components/chart-component/non-time-series.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/chart-component/non-time-series.blade.php -------------------------------------------------------------------------------- /resources/views/components/chart-component/time-series.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/chart-component/time-series.blade.php -------------------------------------------------------------------------------- /resources/views/components/chart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/chart.blade.php -------------------------------------------------------------------------------- /resources/views/components/data-table-component/sort-icon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/data-table-component/sort-icon.blade.php -------------------------------------------------------------------------------- /resources/views/components/data-table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/data-table.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/form-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-generator-component/editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/form-generator-component/editor.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-generator-component/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/form-generator-component/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-generator-component/select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/form-generator-component/select.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-generator-component/select2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/form-generator-component/select2.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-generator-component/textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/form-generator-component/textarea.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-generator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/components/form-generator.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/masif-dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/layouts/masif-dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/masif-dashboard/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/layouts/masif-dashboard/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/masif-dashboard/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/layouts/masif-dashboard/panel.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/masif-dashboard/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/layouts/masif-dashboard/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/check.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/livewire/check.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/form/example.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/livewire/form/example.blade.php -------------------------------------------------------------------------------- /resources/views/navigation-menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/navigation-menu.blade.php -------------------------------------------------------------------------------- /resources/views/pages/admin/example/form-generator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/pages/admin/example/form-generator.blade.php -------------------------------------------------------------------------------- /resources/views/pages/admin/example/table-generator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/pages/admin/example/table-generator.blade.php -------------------------------------------------------------------------------- /resources/views/pages/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/pages/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/policy.blade.php -------------------------------------------------------------------------------- /resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/terms.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/bootstrap-5.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/semantic-ui.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/simple-bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/simple-bootstrap-5.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/simple-tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/vendor/pagination/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /tests/Feature/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/BrowserSessionsTest.php -------------------------------------------------------------------------------- /tests/Feature/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/CreateApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/DeleteAccountTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/ProfileInformationTest.php -------------------------------------------------------------------------------- /tests/Feature/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /tests/Feature/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Feature/UpdatePasswordTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masif088/masif-dashboard-laravel/HEAD/vite.config.js --------------------------------------------------------------------------------