2017 © Pedro Peláez
 

library money

My first package, convert and management number in money

image

wilsilva/money

My first package, convert and management number in money

  • Saturday, July 21, 2018
  • by wilsilva
  • Repository
  • 1 Watchers
  • 5 Stars
  • 45 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 7 Versions
  • 181 % Grown

The README.md

Laravel Convert Money

Latest Stable Version Latest Unstable Version Total Downloads License composer.lock, (*1)

Introduction

My first package, convert number in money., (*2)

Installation

To install Money, just run the following command:, (*3)

    composer require wilsilva/money

Configuration

After installing the Money library, register the WilSilva\Money\MoneyServiceProvider in your config/app.php configuration file:, (*4)


'providers' => [ // Other service providers... WilSilva\Money\MoneyServiceProvider::class, ],

Add the MoneyFacade facade to the aliases array in your app configuration file:, (*5)

'Money' => WilSilva\Money\Facade\MoneyFacade::class,

To publish the config settings in Laravel 5 use:, (*6)

    php artisan vendor:publish --provider="WilSilva\Money\MoneyServiceProvider"

If you change type money, only to change in config/money.php, (*7)


<?php //config file return [ 'money-type' => 'USD', // change to BRL for example ];

Usage


echo Money::convertNumberToMoney(99.90); // dump $ 99,90 // or echo Money::convertMoneyToNumber("$ 99,90"); // dump float 99.90

Helpers

 convert_number_to_money(15.50, "BRL") // dump R$ 15,50

 convert_money_to_number("R$2000,00", "BRL") // dump 2000.00

 offer_descount("$100,00", 20, "USD") // $ 80,00

License

The Money Library is open-sourced software licensed under the MIT license., (*8)

The Versions

21/07 2018

dev-master

9999999-dev

My first package, convert and management number in money

  Sources   Download

MIT

The Requires

 

The Development Requires

by William Silva

laravel php

24/12 2016

dev-development

dev-development

My first package, convert and management number in money

  Sources   Download

MIT

The Requires

 

The Development Requires

by William Silva

laravel php

19/12 2016

0.7.2

0.7.2.0

My first package, convert number in money BRL

  Sources   Download

MIT

The Requires

 

The Development Requires

by William Silva

laravel

11/12 2016

v0.7.1

0.7.1.0

My first package, convert number in money BRL

  Sources   Download

MIT

The Requires

 

The Development Requires

by William Silva

laravel

09/12 2016

v0.3

0.3.0.0

My first package, convert number in money BRL

  Sources   Download

MIT

by William Silva

laravel

09/12 2016

v0.2

0.2.0.0

My first package, convert number in money BRL

  Sources   Download

MIT

by William Silva

laravel

09/12 2016

v0.1

0.1.0.0

My first package, convert number in money BRL

  Sources   Download

MIT

by William Silva