라라벨 csrf_token()

Jmnote (토론 | 기여)님의 2017년 8월 23일 (수) 07:21 판

1 개요

라라벨 csrf_token()
function csrf_token()
{
    $session = app('session');
    if (isset($session)) {
        return $session->token();
    }
    throw new RuntimeException('Application session store not set.');
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}