A Laravel Nepali Date.
, (*1)
A laravel date package which convert AD to BS and viceversa., (*2)
Installation
1) In order to install Laravel 5 Laravelbsdate,go to your project folder and open terminal and run the following code, (*3)
composer require devroshan/bsdate
2) Open your config/app.php
and add the following to the providers
array:, (*4)
devroshan\Bsdate\BsdateServiceProvider::class,
3) In the same config/app.php
and add the following to the aliases
array:, (*5)
'Bsdate' => devroshan\Bsdate\BsdateFacade::class,
Usage
Bsdate::eng_to_nep(2016,12,31); //For converting AD TO BS
Bsdate::nep_to_eng(2073,09,16); //For converting BS TO AD
// output
Array
(
[year] => २०७३
[month] => ९
[date] => १६
[day] => शनिबार
[nmonth] => पुष
[num_day] => ७
)