@extends('layouts.master') @section('css') @toastr_css @section('title') {{ trans('Depts_trans.title_page') }} @stop @endsection @section('page-header')

{{ trans('Depts_trans.title_page') }}

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @can('اضافة قسم')

@endcan
@foreach ($depts as $index => $dept) @endforeach
# {{ trans('Depts_trans.Name_Dept') }} {{ trans('Depts_trans.Processes') }}
{{ $index + 1 }} {{ $dept->name }}
@endsection @section('js') @toastr_js @toastr_render @endsection