├── favicon.ico
├── database
├── .gitignore
├── seeders
│ └── DatabaseSeeder.php
├── migrations
│ ├── 2025_05_31_205538_create_courses_table.php
│ ├── 2025_05_31_210901_create_leads_table.php
│ ├── 0001_01_01_000001_create_cache_table.php
│ ├── 0001_01_01_000000_create_users_table.php
│ └── 0001_01_01_000002_create_jobs_table.php
└── factories
│ └── UserFactory.php
├── robots.txt
├── bootstrap
├── cache
│ └── .gitignore
├── providers.php
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── private
│ │ └── .gitignore
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── resources
├── css
│ └── app.css
├── views
│ ├── components
│ │ ├── application-logo.blade.php
│ │ ├── input-label.blade.php
│ │ ├── text-input.blade.php
│ │ ├── auth-session-status.blade.php
│ │ ├── dropdown-link.blade.php
│ │ ├── input-error.blade.php
│ │ ├── danger-button.blade.php
│ │ ├── secondary-button.blade.php
│ │ ├── primary-button.blade.php
│ │ ├── nav-link.blade.php
│ │ ├── responsive-nav-link.blade.php
│ │ ├── dropdown.blade.php
│ │ └── modal.blade.php
│ ├── courses
│ │ ├── course_actions.blade.php
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ └── courses.blade.php
│ ├── auth
│ │ ├── confirm-password.blade.php
│ │ ├── forgot-password.blade.php
│ │ ├── verify-email.blade.php
│ │ ├── reset-password.blade.php
│ │ ├── login.blade.php
│ │ └── register.blade.php
│ ├── profile
│ │ ├── edit.blade.php
│ │ └── partials
│ │ │ ├── update-password-form.blade.php
│ │ │ ├── delete-user-form.blade.php
│ │ │ └── update-profile-information-form.blade.php
│ ├── layouts
│ │ ├── guest.blade.php
│ │ ├── app.blade.php
│ │ └── navigation.blade.php
│ ├── dashboard.blade.php
│ ├── success.blade.php
│ └── welcome.blade.php
└── js
│ ├── app.js
│ └── bootstrap.js
├── images
└── logo.png
├── tests
├── Unit
│ └── ExampleTest.php
├── Feature
│ ├── ExampleTest.php
│ ├── Auth
│ │ ├── RegistrationTest.php
│ │ ├── PasswordConfirmationTest.php
│ │ ├── AuthenticationTest.php
│ │ ├── PasswordUpdateTest.php
│ │ ├── EmailVerificationTest.php
│ │ └── PasswordResetTest.php
│ └── ProfileTest.php
├── TestCase.php
└── Pest.php
├── postcss.config.js
├── app
├── Http
│ ├── Controllers
│ │ ├── Controller.php
│ │ ├── Auth
│ │ │ ├── EmailVerificationPromptController.php
│ │ │ ├── EmailVerificationNotificationController.php
│ │ │ ├── VerifyEmailController.php
│ │ │ ├── PasswordController.php
│ │ │ ├── ConfirmablePasswordController.php
│ │ │ ├── AuthenticatedSessionController.php
│ │ │ ├── PasswordResetLinkController.php
│ │ │ ├── RegisteredUserController.php
│ │ │ └── NewPasswordController.php
│ │ ├── ProfileController.php
│ │ ├── LeadController.php
│ │ └── CourseController.php
│ └── Requests
│ │ ├── ProfileUpdateRequest.php
│ │ └── Auth
│ │ └── LoginRequest.php
├── Models
│ ├── Course.php
│ ├── Lead.php
│ └── User.php
├── View
│ └── Components
│ │ ├── AppLayout.php
│ │ └── GuestLayout.php
└── Providers
│ └── AppServiceProvider.php
├── .gitattributes
├── routes
├── console.php
├── web.php
└── auth.php
├── vite.config.js
├── .editorconfig
├── .gitignore
├── artisan
├── index.php
├── php.ini
├── .user.ini
├── package.json
├── tailwind.config.js
├── config
├── services.php
├── filesystems.php
├── cache.php
├── mail.php
├── queue.php
├── auth.php
├── datatables.php
├── app.php
├── logging.php
├── database.php
└── session.php
├── phpunit.xml
├── .env.example
├── .htaccess
├── composer.json
├── README.md
└── admission_laravel.sql
/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite*
2 |
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/private/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !private/
3 | !public/
4 | !.gitignore
5 |
--------------------------------------------------------------------------------
/resources/css/app.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/dipti-admission/main/images/logo.png
--------------------------------------------------------------------------------
/tests/Unit/ExampleTest.php:
--------------------------------------------------------------------------------
1 | toBeTrue();
5 | });
6 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | };
7 |
--------------------------------------------------------------------------------
/resources/views/components/application-logo.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/resources/js/app.js:
--------------------------------------------------------------------------------
1 | import './bootstrap';
2 |
3 | import Alpine from 'alpinejs';
4 |
5 | window.Alpine = Alpine;
6 |
7 | Alpine.start();
8 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | get('/');
5 |
6 | $response->assertStatus(200);
7 | });
8 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | compiled.php
2 | config.php
3 | down
4 | events.scanned.php
5 | maintenance.php
6 | routes.php
7 | routes.scanned.php
8 | schedule-*
9 | services.json
10 |
--------------------------------------------------------------------------------
/app/Models/Course.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'block font-medium text-sm text-gray-700']) }}>
4 | {{ $value ?? $slot }}
5 |
6 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | false])
2 |
3 | merge(['class' => 'border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm']) }}>
4 |
--------------------------------------------------------------------------------
/resources/views/components/auth-session-status.blade.php:
--------------------------------------------------------------------------------
1 | @props(['status'])
2 |
3 | @if ($status)
4 |
8 | {{ __('Ensure your account is using a long, random password to stay secure.') }} 9 |
10 |8 | {{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.') }} 9 |
10 || SN | 25 |Title | 26 |Action | 27 |
|---|
8 | {{ __("Update your account's profile information and email address.") }} 9 |
10 || Select | 11 |Fullname | 12 |Mobile | 13 |Course | 15 |Created At | 16 |
|---|
90 | Dear {{ $request->fullname }}, 91 |
92 |93 | thank you for your submission. One of our staff members will contact you by as soon as possible. 94 |
95 | Continue 96 |Class will be held through Own campus and Online Education Platform
91 | 141 |