William
William
I would've used this package if it had promises :(
``` View::composer(array('*view_post'), function($view) { $viewdata=$view->getData(); if(!Auth::check()) return $view->nest('commentForm', 'site/blog/comment_auth'); if(!$viewdata['canComment']) return $view->nest('commentForm', 'site/blog/comment_perm'); return $view->nest('commentForm', 'site/blog/comment_form', array('post' => $viewdata['post'])); }); ``` Then split out the html to seperate files, comment_auth,...
+1 for this
I was wondering the same. Caching the permission calls would certainly help reduce queries that arent needed all the time.
Ditto!
You have to exclude the concated column from your search http://legacy.datatables.net/usage/columns#bSearchable Also noticed it did not like select(DB::raw()) so I had to select(db::raw()) on my specific column for the group...
Same for me, switched to https://github.com/hello-pangea/color-picker and it accepted my style.
There is nothing I can see to tell to scroll, looking into the code it seems one would need to replicate a drag handler, check scrolling conditions, and scroll the...
@circulon I ended up writing my own with umzug, in typescript, here is a screen shot of what I did. 