@extends('layouts.vertical-master-layout') @section('title') {{ __('Institutes') }} @endsection @section('css') @endsection @section('content') {{-- breadcrumbs --}} @section('breadcrumb') @component('components.breadcrumb') @slot('li_1') {{ __('Institutes') }} @endslot @slot('title') {{ __('All Institutes') }} @endslot @endcomponent @endsection @section('pagecontentinfo')

{{ __('Total Institutes') }}

{{ $institutes->count() }}

{{ __('Incomplete') }}

{{ $institutes->where('status', 4)->count() }}

{{ __('Approved') }}

{{ $institutes->where('status', 1)->count() }}

{{ __('Pending For Approval') }}

{{ $institutes->where('status', 2)->count() }}

{{ __('Rejected') }}

{{ $institutes->where('status', 3)->count() }}

{{ __('Blocked') }}

{{ $institutes->where('status', 0)->count() }}

@endsection

{{ __('All Institutes') }}

{{-- MODAL mm --}} @endsection @section('script') @endsection