@extends('layouts.user') @section('title') My Grants @endsection @section('content')
{{ auth()->user()->username }}

{{ auth()->user()->email }}

My Grants History
@forelse($grants as $grant)
{{ $grant->grant_type }}
@php $bot = App\Models\Investment::find($grant->investment_id); @endphp

Insurace AI: {{ $bot?->plan?->name }}

 Status - @if($grant->status == 0) Pending... @elseif($grant->status == 1) Approved @else Declined @endif

@empty @endforelse
@endsection