.defer
{{ __('messages.type') }}
ticket_type_id
@foreach (\App\Models\TicketType::all() as $type)
@endforeach
.defer
ticket_status_id
{{ __('messages.Status') }}
@foreach (\App\Models\TicketStatus::all() as $status)
@endforeach
.defer
last_updated_by
{{ __('messages.Created by') }}
@foreach (\App\Models\User::all() as $user)
@endforeach
.defer
message
{{ __('messages.message') }}
{{--
.defer
{{__('messages.type')}}
account_type
Account Type
.defer
account_id
{{__('messages.Account name')}}
@if ($account_type == 'App\\Models\\Customer')
@foreach (\App\Models\Customer::whereHas('tickets')->get() as $customer)
@endforeach
@elseif ($account_type == "App\\Models\\LeadCustomer")
@foreach (\App\Models\LeadCustomer::whereHas('tickets')->get() as $lead)
@endforeach
@elseif ($account_type == "App\\Models\\Corporate")
@foreach (\App\Models\LeadCustomer::whereHas('tickets')->get() as $corporate)
@endforeach
@else
@endif
--}}