1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-11-12 21:22:28 +01:00

Fix spacing

This commit is contained in:
Chaoyi Zha 2016-12-29 14:59:58 -05:00
parent 3b6a126053
commit e829169ef8

View File

@ -113,7 +113,7 @@ class AdminPaginationController extends Controller {
Delete
</a>';
})
->editColumn('long_url', '<a target="_blank" title="{{ $long_url }}" href="{{ $long_url }}">{{ str_limit($long_url, 50)}}</a>')
->editColumn('long_url', '<a target="_blank" title="{{ $long_url }}" href="{{ $long_url }}">{{ str_limit($long_url, 50) }}</a>')
->escapeColumns(['short_url', 'creator'])
->make(true);
}
@ -126,7 +126,7 @@ class AdminPaginationController extends Controller {
->select(['short_url', 'long_url', 'clicks', 'created_at']);
return Datatables::of($user_links)
->editColumn('long_url', '<a target="_blank" title="{{ $long_url }}" href="{{ $long_url }}">{{ str_limit($long_url, 50)}}</a>')
->editColumn('long_url', '<a target="_blank" title="{{ $long_url }}" href="{{ $long_url }}">{{ str_limit($long_url, 50) }}</a>')
->escapeColumns(['short_url'])
->make(true);
}