@extends('admin.layout')
{{-- this style will be applied when the direction of language is right-to-left --}}
@includeIf('admin.partials.rtl-style')
@section('content')
@if (count($processes) == 0)
{{ __('NO WORK PROCESS FOUND') . '!' }}
@else
@endif
{{-- create modal --}}
@include('admin.home-page.work-process-section.create')
{{-- edit modal --}}
@include('admin.home-page.work-process-section.edit')
@endsection