@extends('layouts/default') {{-- Page title --}} @section('title') @if ($item->id) {{ trans('admin/models/table.update') }} @else {{ trans('admin/models/table.create') }} @endif @parent @stop {{-- Page content --}} @section('content') @if ($item->id) {{ $item->name }} @endif
{{ trans('general.months') }}
{{-- Custom Fieldset --}} {{-- If $item->id is null we are cloning the model and we need the $model_id variable --}} @livewire('custom-field-set-default-values-for-model', ['model_id' => $item->id ?? $model_id ?? null])
@stop