コード例 #1
0
ファイル: helpers.php プロジェクト: rubenwouters/crm-launcher
/**
 * Get latest inserted direct message ID
 * @return integer
 */
function latestDirect()
{
    $tweet_id = 0;
    if (Message::where('direct_id', '!=', '')->where('direct_id', '!=', '0')->exists()) {
        $tweet_id = Message::LatestDirectId();
    }
    return $tweet_id;
}