It\'s pretty straightforward as it\'s the most basic thing but I don\'t know what I\'m missing:
Having a model called Site
Site
I\'m using Eloquent O
Check you are getting Input::get('siteId') correctly. if you are getting it then try to convert it into integer i.e
Input::get('siteId')
$iSiteToDelete = intval(Input::get('siteId'));