25 lines
425 B
PHP
25 lines
425 B
PHP
|
@extends('adminlte::layouts.app')
|
||
|
|
||
|
@section('htmlheader_title')
|
||
|
Home
|
||
|
@endsection
|
||
|
|
||
|
@section('contentheader_title')
|
||
|
{{ $o->full_name }}
|
||
|
@endsection
|
||
|
@section('contentheader_description')
|
||
|
Home
|
||
|
@endsection
|
||
|
|
||
|
@section('main-content')
|
||
|
<div class="content">
|
||
|
<div class="row">
|
||
|
<div class="col-xs-6">
|
||
|
@include('r.agents')
|
||
|
</div>
|
||
|
<div class="col-xs-6">
|
||
|
@include('r.accounts')
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
@endsection
|