15 lines
412 B
PHP
15 lines
412 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('components.datatable', [
|
|
'route' => route('Admin.Shop.InvoicePayments.index'),
|
|
'model' => 'invoice_payments',
|
|
])
|
|
</x-card>
|
|
@endsection
|