38 lines
1.3 KiB
PHP
Executable File
38 lines
1.3 KiB
PHP
Executable File
@extends('dashboard.layouts.app')
|
|
@section('title', trans('admin.add') . ' - ')
|
|
@section('speedbar')
|
|
<div class="content-header row">
|
|
<div class="content-header-left col-md-9 col-12 mb-2">
|
|
<div class="row breadcrumbs-top">
|
|
<div class="col-12">
|
|
<h2 class="content-header-title float-left mb-0">@lang('admin.add')</h2>
|
|
<div class="breadcrumb-wrapper col-12">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item "><a href="{{ route('dashboard') }}">@lang('admin.home')</a>
|
|
</li>
|
|
<li class="breadcrumb-item active">
|
|
@lang('admin.add')
|
|
</li>
|
|
{{-- <li class="breadcrumb-item active">Fixed Layout --}}
|
|
{{-- </li> --}}
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div id="app">
|
|
<compilation-store :categories="{{ json_encode($categories) }}"></compilation-store>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('css')
|
|
@endpush
|
|
|
|
@push('js')
|
|
@vite('resources/js/app.js')</script>
|
|
@endpush
|