예제 #1
0
파일: User.php 프로젝트: amitavroy/mywall
 private function removeOldProfileImage()
 {
     if (Auth::user()->avatar_url != '' && Auth::user()->account_type == 'normal') {
         $fm = new FileManager();
         $fm->removeFile(Auth::user()->avatar_url);
     }
 }