@extends('admin.layouts.main')
@section('title')
Admin View
@endsection
@section('content')
Name | {{ $model->first_name.' '.$model->last_name }} |
---|
Email | {{ $model->email }} |
Country | {{ $model->country }} |
@if($model->image)
Image |
|
@endif
Status | @if($model->status == 0)Inactive
@else($model->status == 1)Active
@endif
|
Created at | {{ $model->created_at }} |
@endsection