forked from RoboJackets/apiary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.blade.php
More file actions
70 lines (64 loc) · 2.47 KB
/
Copy pathwelcome.blade.php
File metadata and controls
70 lines (64 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@extends('layouts/app')
@section('title')
{{ config('app.name') }}
@endsection
@section('content')
@component('layouts/title')
Dashboard
@endcomponent
<div class="row">
<div class="col-sm-6 col-md-5 col-lg-5">
<div class="card">
<div class="card-body">
<h4 class="card-title">
Welcome back, {{ $preferredName }}!
</h4>
<p class="card-text">
@if($isNew)
<b>Status:</b> Non-Member<br/>
@elseif($status)
<b>Status:</b> Active<br/>
<b>Until:</b> {{ $packageEnd }}<br/>
<b>Member Since:</b> {{ $firstPayment }}
@else
<b>Status:</b> Inactive<br/>
<b>Since:</b> {{ $packageEnd }}<br/>
<b>Member Since:</b> {{ $firstPayment }}
@endif
</p>
</div>
</div>
</div>
@if($needsTransaction)
<div class="col-sm-6 col-md-3 col-lg-4">
<div class="card">
<div class="card-body">
<h4 class="card-title">
Complete Profile
</h4>
<p class="card-text">
To continue your membership in RoboJackets, we need you to update your information and pay dues.
</p>
<a href="/dues">Update Info Now</a>
</div>
</div>
</div>
@endif
@if($needsPayment)
<div class="col-sm-6 col-md-3 col-lg-4">
<div class="card">
<div class="card-body">
<h4 class="card-title">
Pay Dues
</h4>
<p class="card-text">
Dues payments are accepted online with credit/debit cards or in-person with card/cash/check.
</p>
<a style="margin-bottom: 0.5rem;display:block" href="/dues/pay">Pay Online Now</a>
<a href="/dues">Change Dues Term</a>
</div>
</div>
</div>
@endif
</div>
@endsection