├── favicon.ico
├── database
├── .gitignore
├── seeders
│ └── DatabaseSeeder.php
├── migrations
│ ├── 2014_10_12_100000_create_password_reset_tokens_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ └── 2019_12_14_000001_create_personal_access_tokens_table.php
└── factories
│ └── UserFactory.php
├── robots.txt
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── laravel
├── images
├── logo.png
├── Aoulad.jpg
├── aoulad.webp
├── favicon.png
├── office.jpg
├── asif-abir.jpg
├── asif-abir.webp
├── cpa-firms.jpg
├── developer2.jpg
├── developer3.jpg
├── developer4.jpg
├── manuruzzaman.jpg
├── nexusbpo-logo.png
├── tax-services.jpg
├── video-editing.jpg
├── banners
│ └── slider2.jpg
├── cms-development.jpg
├── viewOurServices.jpg
├── exploreOurCompany.jpg
├── accounting-services.jpg
├── bookkeeping-service.jpg
├── why_choose_us_image.jpg
├── Responsive Web Design.jpg
├── custom-web-development.jpg
├── ecommerce-development.jpg
├── for-us-based-cpa-firms.webp
├── responsive-web-design.jpg
├── Website-Maintenance-Support.jpg
├── for-us-based-ecommerce-companies.webp
├── for-us-based-wireless-companies.png
├── for-us-based-fundmanagers-and-vc-firms.jpg
└── for-us-based-companies-using-netsuite-sap-erp-system.webp
├── resources
├── css
│ └── app.css
├── js
│ ├── app.js
│ └── bootstrap.js
└── views
│ ├── components
│ ├── input-label.blade.php
│ ├── auth-session-status.blade.php
│ ├── text-input.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
│ ├── expbpo
│ │ ├── topbar.blade.php
│ │ └── home
│ │ │ ├── whyChooseUs.blade.php
│ │ │ ├── bannerBottom.blade.php
│ │ │ ├── slider.blade.php
│ │ │ └── trustedAccounting.blade.php
│ ├── application-logo.blade.php
│ └── modal.blade.php
│ ├── welcome.blade.php
│ ├── dashboard.blade.php
│ ├── emails
│ └── contact.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
│ └── express.blade.php
│ └── pages
│ ├── company-overview.blade.php
│ ├── career.blade.php
│ ├── contact.blade.php
│ ├── erp-maintenance.blade.php
│ └── website-maintaining-service.blade.php
├── cpanel.yml
├── postcss.config.js
├── error_log
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ ├── ExampleTest.php
│ ├── Auth
│ │ ├── RegistrationTest.php
│ │ ├── PasswordConfirmationTest.php
│ │ ├── AuthenticationTest.php
│ │ ├── PasswordUpdateTest.php
│ │ ├── EmailVerificationTest.php
│ │ └── PasswordResetTest.php
│ └── ProfileTest.php
└── CreatesApplication.php
├── .gitattributes
├── app
├── Http
│ ├── Controllers
│ │ ├── Reporting.php
│ │ ├── BookKeeping.php
│ │ ├── SeoServices.php
│ │ ├── WhyChooseUS.php
│ │ ├── CareerController.php
│ │ ├── VideoEditing.php
│ │ ├── AccountPayable.php
│ │ ├── ErpMaintenance.php
│ │ ├── LeadershipTeam.php
│ │ ├── DigitalMarketing.php
│ │ ├── AccountReceivable.php
│ │ ├── PayrollManagement.php
│ │ ├── SaleTaxCompliance.php
│ │ ├── InventoryManagement.php
│ │ ├── CompanyOverview.php
│ │ ├── WebDevelopmentService.php
│ │ ├── WebsiteMaintainingService.php
│ │ ├── Controller.php
│ │ ├── Auth
│ │ │ ├── EmailVerificationPromptController.php
│ │ │ ├── EmailVerificationNotificationController.php
│ │ │ ├── PasswordController.php
│ │ │ ├── VerifyEmailController.php
│ │ │ ├── ConfirmablePasswordController.php
│ │ │ ├── AuthenticatedSessionController.php
│ │ │ ├── PasswordResetLinkController.php
│ │ │ ├── RegisteredUserController.php
│ │ │ └── NewPasswordController.php
│ │ ├── ProfileController.php
│ │ └── Contact.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── PreventRequestsDuringMaintenance.php
│ │ ├── TrimStrings.php
│ │ ├── TrustHosts.php
│ │ ├── Authenticate.php
│ │ ├── ValidateSignature.php
│ │ ├── TrustProxies.php
│ │ └── RedirectIfAuthenticated.php
│ ├── Requests
│ │ ├── ProfileUpdateRequest.php
│ │ └── Auth
│ │ │ └── LoginRequest.php
│ └── Kernel.php
├── View
│ └── Components
│ │ ├── AppLayout.php
│ │ └── GuestLayout.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Models
│ └── User.php
└── Mail
│ └── ContactMail.php
├── .gitignore
├── .editorconfig
├── vite.config.js
├── package.json
├── routes
├── channels.php
├── api.php
├── console.php
├── auth.php
└── web.php
├── tailwind.config.js
├── .htaccess
├── config
├── cors.php
├── services.php
├── view.php
├── hashing.php
├── broadcasting.php
├── filesystems.php
├── sanctum.php
├── cache.php
├── queue.php
├── auth.php
├── mail.php
└── logging.php
├── phpunit.xml
├── .env.example
├── artisan
├── index.php
├── composer.json
├── css
└── style.css
└── README.md
/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/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/laravel:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/laravel
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/logo.png
--------------------------------------------------------------------------------
/resources/css/app.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
--------------------------------------------------------------------------------
/images/Aoulad.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/Aoulad.jpg
--------------------------------------------------------------------------------
/images/aoulad.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/aoulad.webp
--------------------------------------------------------------------------------
/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/favicon.png
--------------------------------------------------------------------------------
/images/office.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/office.jpg
--------------------------------------------------------------------------------
/images/asif-abir.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/asif-abir.jpg
--------------------------------------------------------------------------------
/images/asif-abir.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/asif-abir.webp
--------------------------------------------------------------------------------
/images/cpa-firms.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/cpa-firms.jpg
--------------------------------------------------------------------------------
/images/developer2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/developer2.jpg
--------------------------------------------------------------------------------
/images/developer3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/developer3.jpg
--------------------------------------------------------------------------------
/images/developer4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/developer4.jpg
--------------------------------------------------------------------------------
/images/manuruzzaman.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/manuruzzaman.jpg
--------------------------------------------------------------------------------
/images/nexusbpo-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/nexusbpo-logo.png
--------------------------------------------------------------------------------
/images/tax-services.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/tax-services.jpg
--------------------------------------------------------------------------------
/images/video-editing.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/video-editing.jpg
--------------------------------------------------------------------------------
/images/banners/slider2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/banners/slider2.jpg
--------------------------------------------------------------------------------
/images/cms-development.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/cms-development.jpg
--------------------------------------------------------------------------------
/images/viewOurServices.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/viewOurServices.jpg
--------------------------------------------------------------------------------
/images/exploreOurCompany.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/exploreOurCompany.jpg
--------------------------------------------------------------------------------
/images/accounting-services.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/accounting-services.jpg
--------------------------------------------------------------------------------
/images/bookkeeping-service.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/bookkeeping-service.jpg
--------------------------------------------------------------------------------
/images/why_choose_us_image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/why_choose_us_image.jpg
--------------------------------------------------------------------------------
/images/Responsive Web Design.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/Responsive Web Design.jpg
--------------------------------------------------------------------------------
/images/custom-web-development.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/custom-web-development.jpg
--------------------------------------------------------------------------------
/images/ecommerce-development.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/ecommerce-development.jpg
--------------------------------------------------------------------------------
/images/for-us-based-cpa-firms.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/for-us-based-cpa-firms.webp
--------------------------------------------------------------------------------
/images/responsive-web-design.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/responsive-web-design.jpg
--------------------------------------------------------------------------------
/cpanel.yml:
--------------------------------------------------------------------------------
1 | deployment:
2 | tasks:
3 | - export DEPLOYMENT_PATH=/home/rh250ds7n7oi/public_html
4 | - /bin/cp * $DEPLOYPATH
5 |
--------------------------------------------------------------------------------
/images/Website-Maintenance-Support.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/Website-Maintenance-Support.jpg
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | };
7 |
--------------------------------------------------------------------------------
/resources/js/app.js:
--------------------------------------------------------------------------------
1 | import './bootstrap';
2 |
3 | import Alpine from 'alpinejs';
4 |
5 | window.Alpine = Alpine;
6 |
7 | Alpine.start();
8 |
--------------------------------------------------------------------------------
/images/for-us-based-ecommerce-companies.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/for-us-based-ecommerce-companies.webp
--------------------------------------------------------------------------------
/images/for-us-based-wireless-companies.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/for-us-based-wireless-companies.png
--------------------------------------------------------------------------------
/images/for-us-based-fundmanagers-and-vc-firms.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/for-us-based-fundmanagers-and-vc-firms.jpg
--------------------------------------------------------------------------------
/images/for-us-based-companies-using-netsuite-sap-erp-system.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/expressbpo/main/images/for-us-based-companies-using-netsuite-sap-erp-system.webp
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/resources/views/components/input-label.blade.php:
--------------------------------------------------------------------------------
1 | @props(['value'])
2 |
3 |
6 |
--------------------------------------------------------------------------------
/error_log:
--------------------------------------------------------------------------------
1 | [02-Oct-2024 09:53:06 UTC] PHP Fatal error: Cannot declare class App\Http\Controllers\ContactController, because the name is already in use in /home/rh250ds7n7oi/public_html/app/Http/Controllers/Contact.php on line 8
2 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | merge(['class' => 'font-medium text-sm text-green-600']) }}>
5 | {{ $status }}
6 |
7 | @endif
8 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto eol=lf
2 |
3 | *.blade.php diff=html
4 | *.css diff=css
5 | *.html diff=html
6 | *.md diff=markdown
7 | *.php diff=php
8 |
9 | /.github export-ignore
10 | CHANGELOG.md export-ignore
11 | .styleci.yml export-ignore
12 |
--------------------------------------------------------------------------------
/resources/views/components/text-input.blade.php:
--------------------------------------------------------------------------------
1 | @props(['disabled' => false])
2 |
3 | merge(['class' => 'border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm']) !!}>
4 |
--------------------------------------------------------------------------------
/resources/views/welcome.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.express')
2 |
3 | @section('content')
4 |
Name: {{ $data['name'] }}
24 |Email: {{ $data['email'] }}
25 |Subject: {{ $data['subject'] }}
26 |Message:
27 |{{ $data['message'] }}
28 |
9 | 8 | {{ __('Ensure your account is using a long, random password to stay secure.') }} 9 |
10 |We help you to secure a stable and fulfilling financial future
6 |14 | We bring our extensive accounting & tax experience to the table, so that you can focus on your 15 | own business. You may leave the debits for us to handle, while you get the credits. We have 16 | highly experienced team and we call ourselves seasoned professionals. 17 |
18 |25 | It’s simple. You get the best quality services while you leverage cost efficiencies due to 26 | geographical differences. You do not incur costs for payroll taxes, health benefits, PTO and of 27 | course the costs for incorrect hiring and employee turnover. 28 |
29 |36 | We are an ISO/IEC 27001:2013 certified company and we follow the best practices for the data 37 | security meticulously. We heavily use technology and automation is our passion. We take pride in 38 | calling ourselves a software agnostic company. 39 |
40 |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 |8 | {{ __("Update your account's profile information and email address.") }} 9 |
10 |
9 | At MyNexusBPO, we're always looking for talented individuals to join our growing team. While there are no current open positions, we welcome you to send your CV for future opportunities.
20 |Currently, there are no open positions. However, if you feel you are a perfect fit for our team, we encourage you to apply by sending your CV to us directly.
30 |Even if no positions are open right now, we are always interested in hearing from talented individuals. Please send your CV to admin@mynexusbpo.com, and we will keep it on file for future opportunities.
40 |Email: {$data['email']}
78 |{$data['message']}
79 | 80 | 81 | "; 82 | $headers = "From: {$data['email']}\r\n"; 83 | $headers .= "MIME-Version: 1.0\r\n"; 84 | $headers .= "Content-type: text/html;charset=UTF-8\r\n"; 85 | 86 | // Send the email 87 | if (mail($to, $subject, $message, $headers)) { 88 | return redirect()->back()->with('success', 'Your message has been sent successfully!'); 89 | } else { 90 | return redirect()->back()->with('error', 'Failed to send your message. Please try again.'); 91 | } 92 | } */ 93 | } 94 | -------------------------------------------------------------------------------- /resources/views/layouts/express.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
9 | 1234 Street Name, City, State, 12345
62 |18 | We are a team of 475+ Professionals who deliver the best-in-class results. 19 |
20 |30 | Overall client satisfaction with service delivery using our offshore teams. 31 |
32 |
9 | Our comprehensive ERP maintenance services ensure your enterprise resource planning systems are always running smoothly. We offer proactive monitoring, timely updates, and expert support to keep your ERP systems at peak performance.
19 |Continuous monitoring to identify and resolve issues before they impact your operations, ensuring optimal performance of your ERP systems.
30 |Timely application of updates and security patches to keep your ERP systems secure and up-to-date with the latest features.
39 |Ongoing training sessions and 24/7 support to help your team maximize the use of your ERP systems.
48 |Contact us today to learn more about our ERP maintenance services and how we can help your business achieve greater efficiency and productivity.
71 | Get Started 72 |
8 | Ensuring your website is always running smoothly, securely, and efficiently.
15 |Continuous monitoring and protection to keep your website secure from threats 24 | and vulnerabilities.
25 |We keep your website up-to-date with the latest software, plugins, and patches 34 | to ensure optimal performance.
35 |Ongoing optimization to ensure your website loads quickly and runs efficiently, 44 | providing the best user experience.
45 |Quick resolution of issues and bugs to minimize downtime and keep your website 57 | running smoothly.
58 |Regular backups and efficient recovery solutions to protect your data and 67 | ensure business continuity.
68 |Our team is available around the clock to assist with any issues or questions 77 | you may have.
78 |Interested in our services? Contact Us 85 | Today
86 |