Last active
August 29, 2015 13:59
-
-
Save subdesign/10738536 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public function articlesajax() | |
{ | |
$result = DB::table('articles') | |
->join('users', 'articles.user_id', '=', 'users.id') | |
->select('articles.id as id', 'articles.title as title', 'users.fullname', 'articles.created_at', 'articles.updated_at'); | |
return Datatables::of($result) | |
->add_column('edit', '<a href="/admin/article_edit/{{ $id }}"><i class="icon-list-alt"></i>Edit</a>') | |
->add_column('delete', '<a href="/admin/article_delete/{{ $id }}"><i class="icon-trash"></i>Delete</a>') | |
->make(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment