@extends('admin') @section('css') @endsection @section('content') @include('admin_header')
@include('admin_left_menu')

My Users

@if (Session::get('error_msg'))
{{Session::get('error_msg')}}
@endif @if (Session::get('succ_msg'))
{{Session::get('succ_msg')}}
@endif

Users List

@if($data->count() > 0) {{--*/ $i = 1 /*--}} @foreach($data as $pic)
S.No Name Email city selected profile Profile completed Created At Actions
{{$i}} {{$pic->name}} {{$pic->email}} {{$pic->city}} @if($pic->selected_profile=='T'){{'Talent'}}@endif @if($pic->selected_profile=='O'){{'Organization'}}@endif {{$pic->profile_completed}} {{ date('m/d/Y', strtotime($pic->created_at)) }}