Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View pawel-damasiewicz's full-sized avatar

Paweł Damasiewicz pawel-damasiewicz

  • Katowice Silesia Poland
  • 15:43 (UTC +02:00)
View GitHub Profile
@pawel-damasiewicz
pawel-damasiewicz / docker-compose.md
Last active February 21, 2020 13:12
Docker Compose

Exec with env

docker-compose exec <service> env VAR=VAL bash -l
@pawel-damasiewicz
pawel-damasiewicz / TreeToSetService.php
Last active May 6, 2019 15:34
Tree to nested set algo (copied from collectiveidea/awesome_nested_set)
<?php namespace App\Model\Menu;
use Illuminate\Support\Collection;
class TreeToSetService
{
public $indices = [];
private $leftColumnName = 'lft';
private $rightColumnName = 'rgt';
private $nodeScope = 'version_id';