@extends('admin.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('admin.partials.rtl-style') @section('content')
{{ __('Wrok Processes') }}
@includeIf('admin.partials.languages')
{{ __('Add') }}
@if (count($processes) == 0)

{{ __('NO WORK PROCESS FOUND') . '!' }}

@else
@if ($settings->theme_version == 1 || $settings->theme_version == 3) @endif @if ($settings->theme_version == 2) @endif @foreach ($processes as $process) @if ($settings->theme_version == 1 || $settings->theme_version == 3) @endif @if ($settings->theme_version == 2) @php $ImageWidth = '50px'; @endphp @endif @endforeach
{{ __('Icon') }}{{ __('Image') }}{{ __('Title') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ strlen($process->title) > 30 ? mb_substr($process->title, 0, 30, 'UTF-8') . '...' : $process->title }} {{ $process->serial_number }}
@csrf
@endif
{{-- create modal --}} @include('admin.home-page.work-process-section.create') {{-- edit modal --}} @include('admin.home-page.work-process-section.edit') @endsection @section('script') @endsection