@extends('layouts.app') @section('content')
{{ $seller->user->name }}
{{ $seller->user->email }}
{{ $seller->user->address }}
{{ $seller->user->phone }}
{{ $seller->user->shop->name }}
{{ $seller->user->shop->address }}
{{ $info->label }} | @if ($info->type == 'text' || $info->type == 'select' || $info->type == 'radio'){{ $info->value }} | @elseif ($info->type == 'multi_select'){{ implode(json_decode($info->value), ', ') }} | @elseif ($info->type == 'file'){{translate('Click here')}} | @endif
---|