├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Http │ └── Controllers │ │ ├── Auth │ │ └── LoginController.php │ │ ├── ChecklistItemController.php │ │ ├── Controller.php │ │ ├── FileController.php │ │ ├── MailController.php │ │ ├── NoteController.php │ │ ├── ProjectController.php │ │ ├── ReminderController.php │ │ ├── RoutineController.php │ │ └── TaskController.php ├── Models │ ├── ChecklistItem.php │ ├── File.php │ ├── Note.php │ ├── Project.php │ ├── ProjectTeam.php │ ├── Reminder.php │ ├── Routine.php │ ├── Task.php │ └── User.php └── Providers │ └── AppServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2024_05_21_195304create_projects_table.php │ ├── 2024_05_21_195305_create_tasks_table.php │ ├── 2024_05_21_195441_create_routines_table.php │ ├── 2024_05_21_195502_create_reminders_table.php │ ├── 2024_05_21_195601_create_notes_table.php │ ├── 2024_05_22_204822_create_files_table.php │ ├── 2024_05_24_115740_create_checklist_items_table.php │ └── 2024_08_04_151245_create_project_teams_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── img │ │ ├── logo-circle-horizontal.png │ │ ├── logo-circle.png │ │ └── logo-horizontal.png │ ├── script.js │ └── style.css ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── auth │ └── login.blade.php │ ├── dashboard.blade.php │ ├── files │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── layouts │ └── app.blade.php │ ├── mail │ └── index.blade.php │ ├── notes │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── projects │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── reminders │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── routines │ ├── create.blade.php │ ├── daily.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ ├── monthly.blade.php │ └── weekly.blade.php │ └── tasks │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php ├── routes ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/README.md -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ChecklistItemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/ChecklistItemController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/FileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/FileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/MailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/NoteController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProjectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/ProjectController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ReminderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/ReminderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoutineController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/RoutineController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Http/Controllers/TaskController.php -------------------------------------------------------------------------------- /app/Models/ChecklistItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/ChecklistItem.php -------------------------------------------------------------------------------- /app/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/File.php -------------------------------------------------------------------------------- /app/Models/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/Note.php -------------------------------------------------------------------------------- /app/Models/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/Project.php -------------------------------------------------------------------------------- /app/Models/ProjectTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/ProjectTeam.php -------------------------------------------------------------------------------- /app/Models/Reminder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/Reminder.php -------------------------------------------------------------------------------- /app/Models/Routine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/Routine.php -------------------------------------------------------------------------------- /app/Models/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/Task.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_21_195304create_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_05_21_195304create_projects_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_21_195305_create_tasks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_05_21_195305_create_tasks_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_21_195441_create_routines_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_05_21_195441_create_routines_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_21_195502_create_reminders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_05_21_195502_create_reminders_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_21_195601_create_notes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_05_21_195601_create_notes_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_22_204822_create_files_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_05_22_204822_create_files_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_24_115740_create_checklist_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_05_24_115740_create_checklist_items_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_04_151245_create_project_teams_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/migrations/2024_08_04_151245_create_project_teams_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/img/logo-circle-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/public/assets/img/logo-circle-horizontal.png -------------------------------------------------------------------------------- /public/assets/img/logo-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/public/assets/img/logo-circle.png -------------------------------------------------------------------------------- /public/assets/img/logo-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/public/assets/img/logo-horizontal.png -------------------------------------------------------------------------------- /public/assets/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/files/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/files/create.blade.php -------------------------------------------------------------------------------- /resources/views/files/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/files/edit.blade.php -------------------------------------------------------------------------------- /resources/views/files/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/files/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/mail/index.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/notes/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/notes/create.blade.php -------------------------------------------------------------------------------- /resources/views/notes/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/notes/edit.blade.php -------------------------------------------------------------------------------- /resources/views/notes/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/notes/index.blade.php -------------------------------------------------------------------------------- /resources/views/projects/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/projects/create.blade.php -------------------------------------------------------------------------------- /resources/views/projects/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/projects/edit.blade.php -------------------------------------------------------------------------------- /resources/views/projects/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/projects/index.blade.php -------------------------------------------------------------------------------- /resources/views/projects/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/projects/show.blade.php -------------------------------------------------------------------------------- /resources/views/reminders/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/reminders/create.blade.php -------------------------------------------------------------------------------- /resources/views/reminders/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/reminders/edit.blade.php -------------------------------------------------------------------------------- /resources/views/reminders/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/reminders/index.blade.php -------------------------------------------------------------------------------- /resources/views/routines/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/routines/create.blade.php -------------------------------------------------------------------------------- /resources/views/routines/daily.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/routines/daily.blade.php -------------------------------------------------------------------------------- /resources/views/routines/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/routines/edit.blade.php -------------------------------------------------------------------------------- /resources/views/routines/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/routines/index.blade.php -------------------------------------------------------------------------------- /resources/views/routines/monthly.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/routines/monthly.blade.php -------------------------------------------------------------------------------- /resources/views/routines/weekly.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/routines/weekly.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/tasks/create.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/tasks/edit.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/tasks/index.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/resources/views/tasks/show.blade.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/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/arafat-web/Task-Manager/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 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafat-web/Task-Manager/HEAD/vite.config.js --------------------------------------------------------------------------------