Page MenuHomeDevCentral

home.blade.php
No OneTemporary

home.blade.php

@extends('app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="panel panel-default">
<div class="panel-heading">@lang('panel.status')</div>
<div class="panel-body">
@lang('panel.loggedin')
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="panel panel-default">
<div class="panel-heading">@lang('panel.account')</div>
<div class="panel-body">
<table class="table table-striped">
<tbody>
@foreach ($user as $key => $attribute)
<tr>
<th>@lang("panel.user-attributes.$key")</th>
<td id="user-info-{{ $key }}">{{ $attribute }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
@endsection

File Metadata

Mime Type
text/html
Expires
Tue, Nov 18, 17:45 (18 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3145030
Default Alt Text
home.blade.php (835 B)

Event Timeline