- Stock: In Stock
- Get the full source code for the Laravel custom helper tutorial (Price Format Helper with BDT) by SoftwareBhai Tech. Download from GitHub and set it up locally for learning and use.
Laravel Custom Helper – GitHub Source Code
This repository contains the full working project used in the “Laravel Custom Helper Tutorial | Price Format Helper with BDT Example” by SoftwareBhai Tech.
Download this project, explore how the helper is created and installed, and use it in your own Laravel applications to format prices with Bangladeshi Taka (BDT) currency correctly.
GitHub Repository:
https://github.com/softwarebhai/laravel-helper
How to Run This Project Locally
-
Clone the repository:
git clone https://github.com/softwarebhai/laravel-helper.git -
Navigate to the project folder:
cd laravel-helper -
Install dependencies:
composer install npm install -
Copy
.env.exampleto.env, update database credentials if needed, then generate app key:cp .env.example .env php artisan key:generate -
Run migrations (if included) and start the server:
php artisan migrate php artisan serveVisit
http://localhost:8000and apply the helper functions in controllers and Blade views to format prices with the BDT symbol.
Perfect For
-
Laravel developers who want to learn and implement custom helper functions
-
Developers working on projects that require price formatting or currency display (especially Bangladeshi Taka)
-
Anyone following SoftwareBhai Tech tutorials and wanting the full source code to practice