osb/resources/theme/backend/adminlte/u/home.blade.php

34 lines
646 B
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
@extends('adminlte::layouts.app')
@section('htmlheader_title')
2019-06-02 05:35:48 +00:00
Client Home
@endsection
@section('contentheader_title')
2018-07-17 04:10:40 +00:00
{{ $o->full_name }}
@endsection
2019-06-02 05:35:48 +00:00
@section('page_title')
{{ $o->full_name }}
@endsection
@section('contentheader_description')
2019-06-02 05:35:48 +00:00
Client Home
@endsection
@section('main-content')
2018-05-20 12:53:14 +00:00
<div class="content">
<div class="row">
2019-06-02 05:35:48 +00:00
@include('common.account.widget.summary')
2018-05-20 12:53:14 +00:00
</div>
2018-05-20 12:53:14 +00:00
<div class="row">
2019-06-02 05:35:48 +00:00
<div class="col-7">
@include('common.service.widget.active')
2018-05-20 12:53:14 +00:00
</div>
2019-06-02 05:35:48 +00:00
<div class="col-5">
@include('common.invoice.widget.due')
@include('common.payment.widget.history')
</div>
</div>
</div>
@endsection