@extends('backend.layouts.main_layout') @section('title','Profile') @section('content_header')

Account Balance {{ Auth::guard('advocate')->user()->point_available }}

{{ Session::get('error_msg') }} {{ Session::get('succ_msg') }}
@if(Auth::guard()->user()->detail_status==0) Details @endif
@endsection @section('main_content')
@php $sln=1; @endphp @foreach($services as $point)

{{ $sln }}

Sl No.

Service Code : {{ $point->pack_code}}

Service Name : {{ $point->name }}

Price : {{ $point->amount }}

{{ $point->created_at->format('d-m-Y') }}

@php $sln++; @endphp @endforeach
@endsection