A collection of unit conversions utils for Laravel
sfolador/measures-for-laravel is a Laravel package for a collection of unit conversions utils for laravel.
It currently has 10 GitHub stars and 6.797 downloads on Packagist (latest version 0.1.9).
Install it with composer require sfolador/measures-for-laravel.
Discover more Laravel packages by sfolador
or browse all Laravel packages to compare alternatives.
Last updated
Convert units of measure in Laravel.
You can install the package via composer:
composer require sfolador/measures-for-laravel
You can publish the config file with:
php artisan vendor:publish --tag="measures-for-laravel-config"
use \Sfolador\Measures\Measures;
use \Sfolador\Measures\Unit\Length\Length;
\Sfolador\Measures\Unit\Weight\Weight;
$measure = Measures::length("2.0m");
echo $measures->toCm(); // 200.0 cm
//or you can use the Length class directly
$length = Length::from("2.0m");
echo $length->toCm(); // 200.0 cm
$measure = Measures::weight("2.0Kg");
echo $measures->toG(); // 2000.0 g
//or you can use the Weight class directly
$length = Weight::from("2.0Kg");
echo $length->toG(); // 2000.0 g
It's possible to use also extended fluent methods:
$measure = Length::from("2.0m");
echo $measures->toCentimeters(); // 200 cm
//you can chain the methods:
echo Length::from("2.0m")->toCentimeters(); // 200 cm
If you do not know which kind of measure you are dealing with, you can use the Measures class to
automatically detect the type of measure:
$measure = Measures::from("2.0m"); // $measure is an instance of Length
echo $measures->toCm(); // 200 cm
$measure = Measures::from("2.0Kg"); // $measure is an instance of Weight
echo $measures->toG(); // 2000 g
It's possible to cast a model attribute to a measure:
use \Sfolador\Measures\Unit\Weight\Weight;
use Sfolador\Measures\Cast\Measure;
class Product extends Model
{
protected $casts = [
'weight' => Measure::class,
'length' => Measure::class,
];
}
$product = Product::first();
echo $product->weight->toKg(); // 2 Kg
echo $product->length->toCm(); // 200 cm
$product->weight = Weight::from("3.0Kg");
$product->length = Length::from("1.0m");
$product->save();
echo $product->weight->toKg(); // 3 Kg
echo $product->length->toCm(); // 100 cm
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.