@php
$action = isset($method) && $method=='create' ? route('module.store') : route('module.update', $module->id);
$title = (isset($method) && $method=='create') ? 'Add new module' : 'Update module';
@endphp
@include( 'main.components.breadcrumb', [ 'url' => 'module.view', 'breadcrumb_before' => 'Module manage', 'breadcrumb_after' => (isset($method) && $method=='create') ? 'Add new module' : 'Update module' ] )