Skip to content

Instantly share code, notes, and snippets.

@BrightnBubbly
Last active April 9, 2020 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrightnBubbly/c9092493ff10b243c735a9ee5a75ac3b to your computer and use it in GitHub Desktop.
Save BrightnBubbly/c9092493ff10b243c735a9ee5a75ac3b to your computer and use it in GitHub Desktop.
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">Dashboard</div>
<div class="card-body">
@if (session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
</div>
@endif
You are logged in!
</div>
</div>
</div>
</div>
<stream-chat :autheduser="{{ Auth::user() }}" ></stream-chat>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment