@extends('front.layout.app') @section('content')

User Dashboard

@csrf

Hi, {{ $user->name }}

Member since {{ $user->created_at->format('d M Y') }}

@if($user->membership_id == '1' )

You have subscribed standard Plan.

You can cancle your subscription any time...

@elseif($user->membership_id == '2')

You have subscribed premium Plan.

You can cancle your subscription any time...

@else

You haven't subscribed any Plan yet

@endif


@endsection @section('script') @endsection