think.studio/laravel-thinkit

Laravel small kit for quicker development.

1.3.1 2024-04-25 13:25 UTC

This package is auto-updated.

Last update: 2024-04-25 13:26:22 UTC


README

Packagist License Packagist Version Total Downloads Build Status Code Coverage Scrutinizer Code Quality

Laravel small kit for quicker development.

Installation

Install the package via composer:

composer require think.studio/laravel-thinkit

Optionally you can publish the config file with:

php artisan vendor:publish --provider="ThinKit\ServiceProvider" --tag="config"

Usage

Helpers

SQL

\ThinKit\Helpers\Sql::readableSqlFromQuery(MyModel::whereKey(123));

URL

\ThinKit\Helpers\Url::addOrUpdateArgs('https://my.path.co.uk?example=foo&test=bar', 'new', 'baz');

DateTime

$formats = [
            'Y-m-d',
            'Y-m-d\TH:i:s',
        ];
        
$carbonDate = \ThinKit\Helpers\DateTime::createFromMultipleFormats($formats, '2022-09-28T08:19:00');
$carbonDate->format('Y-m-d H:i:s');

Enums

use ThinKit\Enums\HasNames;
use ThinKit\Enums\NamedEnum;

enum SalesCallType: string implements NamedEnum
{
    use HasNames;

    case GENERAL = 'general';
    case EVENT = 'event';
    case AWARD = 'award';
}

SalesCallType::GENERAL->name() // translation label
SalesCallType::options() // ["<value>" => "<translation label>"]
SalesCallType::formattedOptions() // [["value" => "<value>", "label" => "<translation label>"]]

Credits

  • Think Studio