예제 #1
0
 /**
  * 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);
 }
예제 #2
0
 public static function getDataInfo($id)
 {
     return Content::getInfo($id);
 }