PHP Classes

File: resources/views/home.blade.php

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   resources/views/home.blade.php   Download  
File: resources/views/home.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 408 bytes
 

Contents

Class file image Download
@extends('layouts.app')

@section('title', 'Welcome to the dashboard!')

@section('content')
<div class="container">
    <div class="row">
        <div class="col-md-8 col-md-offset-2">
          <div class="jumbotron">
            <h1>Hi and Welcome!</h1>
            <p>Welcome <strong>{{ Auth::user()->name }}</strong>! How are You Today?</p>
          </div>
        </div>
    </div>
</div>
@endsection