12 lines
301 B
PHP
12 lines
301 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.invoice_payments.title'),
|
|
'subtitle' => __('shop.invoice_payments.list'),
|
|
'breadcrumb' => [__('shop.invoice_payments.title')],
|
|
])
|
|
|
|
@section('content')
|
|
<x-card>
|
|
@include('Admin.Shop.InvoicePayments.list')
|
|
</x-card>
|
|
@endsection
|