@extends('layouts.user-app') @section('title') Dashboard @endsection @section('styles') @endsection @section('content') @include('partial.user-top-menu')

Dashboard

Generate Report
{{ userProjects()->count() }}
{{ userProjects('pending')->count() }}
{{ userProjects('approved')->count() }}
{{ number_format(userProjectsDonations(), 2) }}
Projects
@foreach($projects as $k => $project) @php($donations = $project->donations()->sum('donated')) @php($donated = round(($donations / $project->goal * 100), 2)) @php( $color = $donated > 70? 'success': ($donated > 50 ?'info': ($donated > 50?'primary': ($donated > 20?'secondary': ($donated > 10? 'warning':'danger')))))

{{ ucwords($project->title) }}{{ $donated }}%

@endforeach
@endsection @section('scripts') @endsection