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

User Projects

@php($projUser = $projects[0]->user) @foreach($projects as $k => $project) @endforeach
User/ Owner {{ ucwords($projUser->fname.' '.$projUser->lname) }}
Title Category Description Goal Donations Goal Status Rank Status Action
{{ ucwords($project->title) }} {{ strtolower($project->category->name?? '') }} {{ $project->description }} {{ $project->goal }} {{ $project->donations->sum('donated') }} {{ $project->goal_status }} {{ $project->ranked }} {{ $project->status }}
@endsection @section('scripts') @endsection