@extends('layout.admin-app')
@section('title', 'Subscription Details')
@section('page_css')
@endsection
@section('content')
| ID |
{{$subscribers->id ?? ''}} |
| Package Name |
{{$subscribers->package->name ?? ''}} |
| Description |
{{$subscribers->package->description ?? ''}} |
| Price |
${{$subscribers->package->price ?? ''}} |
| Start Date |
{{$subscribers->created_at->format('d/m/y') ?? ''}} |
| Expiry Date |
@if($subscribers->status == 'on_going')
{{$subscribers->created_at->addDays(30)->format('d/m/y') ?? ''}} |
@else
Cancelled |
@endif
@endsection