KonScyence's avatar

Can't use method return value in write context

Hi, I have this error in laravel with PHP 7.1.5: Can't use method return value in write context

There is the code concern: @if(Session::get('type') = 'pro') active @endif

Thanks !

0 likes
2 replies
Snapey's avatar
Snapey
Best Answer
Level 122

use double equals == for comparison

@if(Session::get('type') == 'pro') active @endif

Please or to participate in this conversation.