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

Projects

New Project
@foreach($projects as $k => $project) @if(!is_null($project->user)) @php $projUser = $project->user; @endphp @endif @endforeach
User/ Owner Title Category Description Goal Donations Status Rank Action
{{ $projUser->fname.' '.$projUser->lname }} {{ $project->title }} {{ $project->category->name ?? '' }} {{ Str::limit($project->description, 80) }} @if (strlen($project->description) > 80) View @endif {{ $project->goal }} {{ $project->donations()->sum('donated') }} {{ $project->status }}
-
+
@if($project->status != 'approved') @endif
@endsection @section('scripts') @endsection