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

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

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

@foreach ($subjects as $index => $subject) @endforeach
# {{ trans('Subjects_trans.Name_Subject') }} {{ trans('Subjects_trans.Name_Dept') }} {{ trans('Subjects_trans.Semester_Name') }} {{ trans('Subjects_trans.Processes') }}
{{ $index + 1 }} {{ $subject->name }} {{ $subject->dept->name }} {{ $subject->semester->name }}
@endsection @section('js') @toastr_js @toastr_render @endsection