You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
@extends('layout')
|
|
|
|
|
|
@section('content')
|
|
|
<div class="jumbotron">
|
|
|
<h1>PHP Graph Tutorial</h1>
|
|
|
<p class="lead">This sample app shows how to use the Microsoft Graph API to access Outlook and OneDrive data from PHP</p>
|
|
|
@if(isset($userName))
|
|
|
<h4>Welcome {{ $userName }}!</h4>
|
|
|
<p>Use the navigation bar at the top of the page to get started.</p>
|
|
|
@else
|
|
|
<a href="/signin" class="btn btn-primary btn-large">Click here to sign in</a>
|
|
|
@endif
|
|
|
</div>
|
|
|
@endsection
|