PHP code example of recycledbeans / useful-things

1. Go to this page and download the library: Download recycledbeans/useful-things library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

recycledbeans / useful-things example snippets



 

namespace App;

use Illuminate\Database\Eloquent\Model;
use RecycledBeans\Helpers\HasMoney;

class Order extends Model 
{

  use HasMoney;  
  
  public function getTotalAttribute($value)
  {
    // Converts the 2512 stored in the database to 25.12
    return $this->toFloat($value);
  }
  
  public function setTotalAttribute($value)
  {
    // Stores 52.60 as 5260 for storage in the database
    $this->attributes['total'] = $this->toInteger($value);
  }

}


(new Money)->toPennies('25.12'); // 2512

(new Money)->toDollars(2512); // '25.12'