30 lines
631 B
PHP
30 lines
631 B
PHP
@extends('admin::layouts.master')
|
|
|
|
@section('title')
|
|
Setting
|
|
@endsection
|
|
|
|
@section('breadcrumb')
|
|
@php
|
|
$breadcrumbData = [
|
|
[
|
|
'title' => 'Setting',
|
|
'link' => null,
|
|
],
|
|
[
|
|
'title' => 'General',
|
|
'link' => null,
|
|
],
|
|
];
|
|
@endphp
|
|
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="content-wrapper container-xxl p-0">
|
|
<div class="content-body">
|
|
@include('setting::partial.form')
|
|
</div>
|
|
</div>
|
|
@endsection
|