@extends('admin.layouts.app') @section('pageTitle') {{ Lang::get('main.home_page_title') }} @endsection @section('content')
   

{{ Lang::get('main.dashboard') }} {{ Lang::get('main.dashboard') }}

{{-- therapists--}}

{{ count($therapist)}}

@lang('main.therapists')

@if(PerUser('therapists')) @lang('main.view') @else @endif
{{--visitors--}}

{{ count($visitor)}}

@lang('main.visitors')

@if(PerUser('visitors')) @lang('main.view') @else @endif
{{--profiles--}}

{{ count($profiles)}}

@lang('main.profiles')

@if(PerUser('profiles')) @lang('main.view') @else @endif
{{--users--}}

{{ count($user)}}

@lang('main.users')

@if(PerUser('users')) @lang('main.view') @else @endif
@include('admin.therapistdash')
@endsection