reedware/carbon-helper

Adds a global helper method to create carbon instances.

v1.0.1 2019-07-31 00:45 UTC

This package is auto-updated.

Last update: 2024-04-07 23:36:02 UTC


README

Latest Stable Version Total Downloads

Adds a global helper method to create Carbon instances. See http://carbon.nesbot.com for how to use Carbon.

carbon('2019-07-23 14:51'); // Equivalent to \Carbon\Carbon::parse('2019-07-23 14:51');

Installation (Using Composer)

Run the following command:

$ composer require reedware/carbon-helper

Or manually require this package:

{
    "require": {
        "reedware/carbon-helper": "^1.0"
    }
}

Then make sure composer is loaded, and get going!

<?php
require 'vendor/autoload.php';

printf("Now: %s", carbon());