@extends('entity.app') @section('title' , __('student.socials') ) @section('content')
@lang('student.socials')
@if ($socials->isEmpty())

@lang('student.empty')

@else @foreach ($socials as $social) @endforeach
@lang('student.id') @lang('student.name') @lang('student.student_count') @lang('student.created_at') @lang('student.actions')
{{ $social->id }} {{ $social->name }} {{ $social->students_count }} {{ $social->created_at->format('Y-m-d') }}
{!! $socials->links() !!}
@endif
@endsection