@extends('layouts.application') @section('content')
{{__('Предметы')}}
@if(count($subjects))
    @foreach ($subjects as $subject)
  • {{ $subject->name }}
  • @endforeach
@endif
@endsection