/** * Removing Data Information * * @return void * @author **/ public static function remData($id) { Content::find($id)->delete(); Log::write('Data', 'Data Id <b>' . $id . '</b> Remove by ' . Auth::user()->username); }
public static function getDataInfo($id) { return Content::getInfo($id); }