Files
opensem/resources/views/Shop/Customers/profile.blade.php
2023-11-13 00:02:21 +01:00

17 lines
380 B
PHP

@extends('Shop.layout.layout', [
'title' => __('Profil'),
])
@section('content')
<div class="row">
<div class="col-lg-3 col-md-12">
@include('Shop.Customers.partials.user')
</div>
<div class="col-lg-9 col-md-12">
@include('Shop.Customers.partials.sale')
</div>
</div>
@endsection
@include('load.layout.modal')