@php $type = $item->type->value; $typeLabel = $type ? trans('admin.landing_' . $type) : trans('admin.landing_items'); $editLabel = $type ? trans('admin.edit_landing_' . $type) : trans('admin.edit_landing_item'); @endphp @extends('layouts.master') @section('title', $editLabel) @section('content') @include('layouts._breadcrumb', [ 'list' => [ ['data' => trans('admin.dashboard'), 'url' => route('admin.dashboard')], ['data' => $typeLabel, 'url' => route('admin.landing_item.index', ['type' => $type])], ['data' => $editLabel, 'url' => null], ], ])