@extends('layouts.admin') @section('title', 'جزئیات دکمه') @section('content') ویرایش
@csrf @method('DELETE') حذف
@php $actionTypeLabels = [ 'send_text' => 'ارسال متن', 'send_file' => 'ارسال فایل', 'open_url' => 'بازکردن پیوند', 'show_menu' => 'نمایش منو', 'call_handler' => 'اجرای هندلر', ]; @endphp
نوع اکشن
{{ $actionTypeLabels[$button->action_type] ?? $button->action_type }}
وضعیت
{{ $button->is_active ? 'فعال' : 'غیرفعال' }}
ترتیب
{{ $button->sort_order ?? 0 }}
کلاس هندلر
{{ $button->handler_class ?: '-' }}
@endsection