@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Pages'), 'buttons'=>[ [ 'name'=>' '.__('Create a team'), 'url'=>route('admin.team.create'), ] ] ]) @endsection @section('content')
{{ $totalPosts }}

{{ __('Total Members') }}

{{ $totalActivePosts }}

{{ __('Active Members') }}

{{ $totalInActivePosts }}

{{ __('Inactive Members') }}

{{ __('Our Team') }}

@foreach($posts ?? [] as $post) @endforeach
{{ __('Name') }} {{ __('Position') }} {{ __('Status') }} {{ __('Action') }}
{{ Str::limit($post->title,50) }} {{ Str::limit($post->slug,50) }} {{ $post->status == 1 ? __('Active') : __('Draft') }}
@if(count($posts) == 0)
{{ __('!Opps no records found') }}
@endif
@endsection