PHP Classes

File: resources/views/backend/pages/dashboard/index.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   LaraCMS   resources/views/backend/pages/dashboard/index.blade.php   Download  
File: resources/views/backend/pages/dashboard/index.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: LaraCMS
Content management system based on Laravel
Author: By
Last change:
Date: 1 year ago
Size: 1,094 bytes
 

Contents

Class file image Download
@extends('backend.layouts.master')

@section('title')
@include('backend.pages.dashboard.partials.title')
@endsection

@section('admin-content')
@include('backend.pages.dashboard.partials.header-breadcrumbs')

<!-- ============================================================== -->
<!-- Container fluid -->
<!-- ============================================================== -->
<div class="container-fluid">
    <h4>
        Hello, <strong>{{ Auth::user()->first_name .' '. Auth::user()->last_name }}</strong> Welcome to Lara CMS.
    </h4>
    <p>
        Check at the left side or at the bottom to get your menus...
    </p>

    @include('backend.pages.dashboard.partials.top-show')
    {{-- @include('backend.pages.dashboard.partials.email-campaign') --}}
    {{-- @include('backend.pages.dashboard.partials.revinue-page-bounce') --}}
    @include('backend.pages.dashboard.partials.recent-data')
</div>
<!-- ============================================================== -->
<!-- End Container fluid -->
<!-- ============================================================== -->
@endsection