Skip to content

Instantly share code, notes, and snippets.

View dhanifudin's full-sized avatar
💻
work for home

Dian Hanifudin Subhi dhanifudin

💻
work for home
View GitHub Profile
@dhanifudin
dhanifudin / UUIDModel.php
Last active September 9, 2015 19:39
Eloquent Laravel Model that autogenerated uuid and save using binary format
<?php
use Rhumsaa\Uuid\Uuid;
class UUIDModel extends Eloquent {
public $incrementing = false;
protected $softDelete = true;
public function __construct(array $attributes = array()) {