@php $type = request('type'); $typeLabel = $type ? trans('admin.landing_' . $type) : trans('admin.landing_items'); $createLabel = $type ? trans('admin.create_landing_' . $type) : trans('admin.create_landing_item'); @endphp @extends('layouts.master') @section('title', $createLabel) @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' => $createLabel, 'url' => null], ], ])