ahmedfaical

Results 16 comments of ahmedfaical

I'm using Redis driver with laravel 5.4 ``` This is the code in my routes/api.php : Route::get('/test', "Frontoffice\CartController@test"); ``` I access to my api in browser like this : www.example.com/api/test...

Any idea please that can help me? it's like that a new session created or something like that, Can you help me?

yes it works i'm using redis in session I store my session data using `Redis::set('test', $value);` And i retrieve this value `Redis::get('test', $value);`

i'm using session facade i only change SESSION_DRIVER=redis from file to redis

But when i'm doing test to see if laravel session work or now i get those results : ``` public function test(Request $request){ $request->session()->put('key', 'value'); $key = $request->session()->get('key'); return response($key);...

yes i'm doing tests now and laravel session works fine, Any idea from where i get the problem ? This is my code : CartController.php ```

in CartController in index method : ``` public function index($prefix) { Cart::add(18, 'name one', 2, 44, array('size' => 'De4', 'stock' => '2')); if($prefix == translate('global.cart')){ return view('frontoffice.cart.index'); } } ```...

+1 for `picture` tag support. any news about this?

Anyone get this working with react 16 ?