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

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

@else
@foreach ($processes as $process) @endforeach
{{ __('Icon') }} {{ __('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