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

{{ __('NO CONTENTS FOUND') . '!' }}

@else
@foreach ($workingProcedures as $workingProcedure) @endforeach
{{ __('Icon') }} {{ __('Title') }} {{ __('Actions') }}
{{ strlen($workingProcedure->title) > 30 ? mb_substr($workingProcedure->title, 0, 30, 'UTF-8') . '...' : $workingProcedure->title }}
@csrf
@endif
{{-- create modal --}} @includeIf('admin.home-page.work-process-section.create') {{-- edit modal --}} @includeIf('admin.home-page.work-process-section.edit') @endsection