Разделы
Veselov CV | vvShop © 2008 – 2018
Контакты
email:
skype:
» » » Страница 8

Каталог набор laravel пакетов


Каталог набор laravel пакетов
LARAVEL-BACKUP
LARAVEL-FRACTAL
LARAVEL-PERMISSION
LARAVEL-ANALYTICS
LARAVEL-MEDIALIBRARY
LARAVEL-GLIDE
и тд.
https://spatie.be/en/opensource/laravel

bitcoin-php - реализация bitcoin на php


Пример кода
use BitWasp\Buffertools\Buffer;
use BitWasp\Bitcoin\Transaction\OutPoint;
use BitWasp\Bitcoin\Script\Script;
use BitWasp\Bitcoin\Transaction\TransactionInput;

$txid = Buffer::hex('87f7b7639d132e9817f58d3fe3f9f65ff317dc780107a6c10cba5ce2ad1e4ea1');
$vout = 0;
$outpoint = new OutPoint($txid, $vout);

$sequence = TransactionInput::SEQUENCE_FINAL;
$script = new Script();
$input = new TransactionInput($outpoint, $script, $sequence);
https://github.com/bit-wasp/bitcoin-php

codeception-progress-reporter - репортер codeception с индикатором прогресса


codeception-progress-reporter - репортер codeception с индикатором прогресса

https://github.com/fr05t1k/codeception-progress-reporter

jenssegers/date - библиотека на php помогающая работу с датами основана на Carbon


use Jenssegers\Date\Date;
Date::setLocale('nl');
echo Date::now()->format('l j F Y H:i:s'); // zondag 28 april 2013 21:58:16
echo Date::parse('-1 day')->diffForHumans(); // 1 dag geleden

https://github.com/jenssegers/date

laravel-debugbar - панель отладки для laravel


laravel-debugbar - панель отладки для laravel

https://github.com/barryvdh/laravel-debugbar

laravel-user-verification - пакет laravel для верификации и валидации email


public function register(Request $request)
{
        $this->validator($request->all())->validate();
        $user = $this->create($request->all());
        event(new Registered($user));
        $this->guard()->login($user);
        UserVerification::generate($user);
        UserVerification::send($user, 'My Custom E-mail Subject');
        return $this->registered($request, $user)
                                        ?: redirect($this->redirectPath());
}

https://github.com/jrean/laravel-user-verification
« »
Вверх