17 lines
329 B
PHP
17 lines
329 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')
|