<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Session;
class add_classController extends Controller
{
public function index(){
if (Session::has('YOUR_SESSION_KEY')){
// do some thing if the key is exist
}else{
//the key does not exist in the session
}
}
}
刀片,例如:
@if (Session::has('YOUR_SESSION_KEY'))
{{-- do something with session key --}}
@else
{{-- session key dosen't exist --}}
@endif
9条答案
按热度按时间oknwwptz1#
您可以使用
2jcobegt2#
DavidDomain指出,最好的方法可能是使用
if(Session::has('...'))
对我来说就像一种魔力。
jtw3ybtb3#
您可以在刀片和控制器中使用
Session::has('YOUR_SESSION_KEY')
控制器,例如:
刀片,例如:
svujldwt4#
你能做到的
gg0vcinb5#
lx0bsm1f6#
或更短,不使用会话虚包:
if(session()->exists('key_here'))
bbmckpt77#
这对我有用
dtcbnfnu8#
或
8yparm6h9#
尝试以下新的laravel语法
@if(会话()-〉已(“成功”))