How to make Controller in laravel sail

I've got accomplished web development with expertise in various programming languages including PHP, Laravel, C#, and C++. My curiosity to learn more and my passion for coding drives me to constantly enhance my skills and create exceptional digital experiences.
./vendor/bin/sail artisan make:controller controllername- this doesn't work then use other command instead
bash ./vendor/bin/sail artisan make:controller controllername

Background
Laravel Sail simplifies local development by providing a Docker-based environment for Laravel applications. Developers can use the
bash ./vendor/bin/sailcommand to interact with pre-configured Docker containers for services like MySQL and Redis.The
bash ./vendor/bin/sail artisan make:controller ControllerNamecommand generates a new controller in Laravel Sail with a structure similar tophp artisan make:controller. Developers can modify the controller to add their own methods and logic.Laravel Sail uses dependency injection to make it easy to use models in controllers. Docker containers simplify the local development workflow by providing pre-configured environments for services, and by reducing the time and effort required to set up a Laravel project, developers can focus on building applications and delivering value.

