@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content') @php $appointment_count=DB::table('appointment')->where('status','1')->count(); $package_count=DB::table('package')->where('status','1')->count(); $trainingprogram_count=DB::table('trainingprogram')->where('status','1')->count(); $blood_request_count=DB::table('blood_requests')->where('status','1')->count(); @endphp
@endsection @section('script') @endsection