@extends('layouts.admin') @push('title', get_phrase('Subjects')) @push('meta') @endpush @push('css') @endpush @section('content')

{{ get_phrase('Tutor subjects') }} ({{ $subjects->count() }})

{{ get_phrase('Add new subject') }}
@if ($subjects->count() > 0)

{{ get_phrase('Showing') . ' ' . count($subjects) . ' ' . get_phrase('of') . ' ' . $subjects->total() . ' ' . get_phrase('data') }}

@foreach ($subjects as $key => $subject) @endforeach

{{ get_phrase('Showing') . ' ' . count($subjects) . ' ' . get_phrase('of') . ' ' . $subjects->total() . ' ' . get_phrase('data') }}

{{ $subjects->links() }}
@else @include('admin.no_data') @endif
@endsection