@php use App\Models\Investment; $draft = model('Investment')::where('status', 1)->count(); $accepted = model('Investment')::where('status', 2)->count(); $approved = model('Investment')::where('status', 3)->count(); $closed = model('Investment')::where('status', 4)->count(); $closing = model('Investment')::where('closing_request', 1)->count(); @endphp @push('css') @endpush