Example #1
0
 public function destroy($id)
 {
     $teach = Teach::with('presences')->find($id);
     if ($teach->presences->count() > 0) {
         Session::flash('message', 'Tidak dapat menghapus pertemuan!!');
     } else {
         Teach::destroy($id);
         Session::flash('message', 'Sukses mengupdate info Pertemuan');
     }
 }