14 lines
257 B
PHP
14 lines
257 B
PHP
@extends('Shop.layout.layout', [
|
|
'title' => __('Profil'),
|
|
])
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-3">
|
|
@include('Shop.Customers.partials.user')
|
|
</div>
|
|
<div class="col-9">
|
|
@include('Shop.Customers.partials.sale')
|
|
</div>
|
|
@endsection
|