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

{{ trans('main_trans.Years') }}

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@foreach ($years as $index => $year) @endforeach
# {{ trans('main_trans.Year_name') }} {{ trans('main_trans.Processes') }}
{{ $index + 1 }} {{ $year->name }}
@endsection @section('js') @toastr_js @toastr_render @endsection