Skip to content

Commit

Permalink
Custom column now can be subclass of \SleepingOwl\Admin\Columns\Colum…
Browse files Browse the repository at this point in the history
…n\BaseColumn
  • Loading branch information
sleeping-owl committed Nov 7, 2014
1 parent 39a6e2a commit 77e36ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

2014-11-08, v1.1.2
------------------

* Custom column now can be subclass of \SleepingOwl\Admin\Columns\Column\BaseColumn

2014-11-08, v1.1.1
------------------

Expand Down
2 changes: 1 addition & 1 deletion src/SleepingOwl/Admin/Columns/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static function __callStatic($method, $params)
$column = null;
if ($handler = static::getHandler($method))
{
$column = App::make($handler);
$column = App::make($handler, $params);
} else
{
$className = get_called_class() . '\\' . ucfirst($method);
Expand Down

0 comments on commit 77e36ff

Please sign in to comment.