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

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

{{ get_phrase('Add new category') }}
@if ($categories->count() > 0)

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

@foreach ($categories as $key => $category) @endforeach

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

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