I want to get the id of the session in Laravel 4
In Laravel 3, it was a bit hacky, but possible with this code:
$session_id = Session::$instance->
in laravel 5.5 first write this in your controller use Session; and inside your controller function write the following linesession()->getId();
use Session;
session()->getId();