@extends('layout.master') @section('title','Admin | Dashboard') @section('main-body')

{{__('Dashboard')}}

{!! clean($totalUser) !!}

{{__('Total User')}}

{!! clean($totalProject) !!}

{{__('Total Portfolio')}}

{!! clean($teams) !!}

{{__('Team Members')}}

{!! clean($posts) !!}

{{__('Blog Posts')}}

{!! clean($services) !!}

{{__('Services')}}

{!! clean($plans) !!}

{{__('Pricing Plans')}}
{{__('Monthly Blog Post Report')}}

{{__('Current Year')}}

{{__('Most Recent Blog Posts')}}
@if(isset($blogs[0])) @php ($sl = 1) @foreach($blogs as $item) @endforeach @else @endif
{{__('SL.')}} {{__('Image')}} {{__('Post Title')}} {{__('Comments')}} {{__('Added On')}}
{{$sl++}} {!! clean(str_limit($item->title,80)) !!} {!! clean(get_comments_count($item->id)) !!} {!! clean(date('d M y', strtotime($item->created_at))) !!}
{{__('No data found')}}
{{__('Recent Portfolios')}}
@if(isset($portfolios[0])) @php ($sl = 1) @foreach($portfolios as $item) @endforeach @else @endif
{{__('SL.')}} {{__('Image')}} {{__('Title')}} {{__('Category')}} {{__('Added On')}}
{{$sl++}} {!! clean(str_limit($item->title,80)) !!} {!! clean($item->category->name) !!} {!! clean(date('d M y', strtotime($item->created_at))) !!}
{{__('No data found')}}
@endsection @section('script') @endsection