0
/*
<img src="{{$users['image']}}" />
*/

Where $users['image'] is the field of table where I store the firebase image URL.

Vik
  • 33
  • 1

1 Answers1

0

Access it like so if an user is logged in:

<img src="{{Auth::user()->image}}" />
Marcin
  • 1,488
  • 1
  • 13
  • 27