39 lines
910 B
PHP
39 lines
910 B
PHP
@extends('admin::layouts.master')
|
|
|
|
@section('title')
|
|
Create Transformation
|
|
@endsection
|
|
|
|
@section('breadcrumb')
|
|
@php
|
|
$breadcrumbData = [
|
|
[
|
|
'title' => 'Create',
|
|
'link' => 'null',
|
|
],
|
|
[
|
|
'title' => 'Dashboard',
|
|
'link' => route('dashboard'),
|
|
],
|
|
[
|
|
'title' => 'Transformations',
|
|
'link' => route('transformation.index'),
|
|
],
|
|
[
|
|
'title' => 'Create',
|
|
'link' => null,
|
|
],
|
|
];
|
|
@endphp
|
|
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
|
|
@endsection
|
|
|
|
@section('content')
|
|
|
|
<form action="{{ route('transformation.store') }}" method="POST" enctype="multipart/form-data">
|
|
@csrf
|
|
@include('transformation::partial.form')
|
|
</form>
|
|
|
|
@endsection
|