@extends('voyager::master')
@section('page_title', __('voyager::generic.viewing').' '.'Driver')
@section('page_header')
Create Driver
@stop
@section('content')
@php
$Userinfo = App\model\Customer:: where('id', $id)->first();
$name = $Userinfo->first_name;
//echo $name ;
// $users = Users::all();
$Userinfo = $Userinfo->first();
$attributes = array_keys($Userinfo->toArray());
//$responseData = json_decode( $attributes,true);
foreach ($attributes as $object) {
print( $object );
print( '\n');
}
@endphp