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

Projects

New Project
@foreach($projects as $k => $proj) @endforeach
Title Category Description Goal Donation Usage Announced Status Action
{{ $proj->title }} {{ $proj->category->name ?? '' }} {{ Str::limit($proj->description, 80) }} @if (strlen($proj->description) > 80) View @endif {{ $proj->goal }} {{ Str::limit($proj->donation_usage, 80) }} @if (strlen($proj->donation_usage) > 80) View @endif {{ human_date($proj->created_at) }} {{ $proj->status }}
@if($proj->status != 'approved') @endif
@endsection @section('scripts') @endsection