Advertisement
Guest User

Untitled

a guest
Aug 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Controller.php
  2. public function reject($id)
  3. {
  4. $apply = Apply::find($id);
  5. $apply->apply_status = 0;
  6. $apply->save();
  7. return redirect('teamfinder/action')->with('success','Freelancer has been rejected');
  8. }
  9.  
  10. public function destroy($id)
  11. {
  12. $apply = Apply::find($id);
  13. $apply->delete();
  14.  
  15. return redirect('teamfinder/action')->with('success','Invitation has been deleted');
  16. }
  17. Blade.php
  18. <td class="text-center">
  19. <form action="{{ action('TeamFinder\ActionController@update', $applicant['id'] ) }}" method="post">
  20. @csrf
  21. <input name="_method" type="hidden" value="PATCH">
  22. <button data-toggle="tooltip" title="Approve" class="btn btn-effect-ripple btn-xs btn-success"><i class="hi hi-ok"></i></button>
  23. </form>
  24. <form action="{{ action('TeamFinder\ActionController@reject', $applicant['id'] ) }}" method="post">
  25. @csrf
  26. <input name="_method" type="hidden" value="PATCH">
  27. <button data-toggle="tooltip" title="Reject" class="btn btn-effect-ripple btn-xs btn-danger"><i class="fa fa-times"></i></button>
  28. </form>
  29. </td>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement