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

{{ get_phrase('Student List') }}

{{ get_phrase('Add new Student') }}
@if (count($students) > 0)

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

@foreach ($students as $key => $row) @endforeach
@else @include('admin.no_data') @endif @if (count($students) > 0)

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

{{ $students->links() }}
@endif
@endsection @push('js') @endpush