@extends('layouts.admin.master') @section('title') View Sponsorship @endsection @section('content')

Sponsorship Details

Back
{{-- Title --}}

Title

{{ $sponsorship->title }}
{{-- Status --}}

Status

{{ $sponsorship->status ? 'Active' : 'Inactive' }}
{{-- Amount --}}

Amount

{{ $sponsorship->amount }}
{{-- Duration Type --}}

Duration

{{ config('constants.duration_type')[$sponsorship->duration_type] ?? $sponsorship->duration_type }}
{{-- Icon --}} @if($sponsorship->icon)

Icon

Icon
@endif {{-- Description --}}

Description

{!! $sponsorship->description !!}
{{-- Advertisements --}} @if($sponsorship->advertisements->count() > 0)

Advertisements

    @foreach($sponsorship->advertisements as $ad)
  • {{ $ad->advertisement_name }}
  • @endforeach
@endif
@endsection