Files
exchange-2.0/resources/views/pages/customers/profile.blade.php
T
2021-10-09 13:44:33 +08:00

9 lines
470 B
PHP

@extends('layouts.base_portal')
@section('inner_content')
<div class="row">
<div class="col">
<loading-component style="height: 200px; top: 0;" key="1" color="success" v-show="$store.getters.isLoading('customerProfileSection')"></loading-component>
<customer-profile-section-component id="{{$id}}" v-show="!$store.getters.isLoading('customerProfileSection')"></customer-profile-section-component>
</div>
</div>
@endsection