{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($socials as $social) @endforeach
{{ __('admin.date') }} {{__('admin.image')}} {{__('admin.name')}} {{__('admin.link')}} {{__('admin.control')}}
{{ $social->created_at->format('d/m/Y') }} {{$social->name}} {{$social->name}} {{$social->link}}
{{-- table content --}} {{-- no data found div --}} @if ($socials->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($socials->count() > 0 && $socials instanceof \Illuminate\Pagination\AbstractPaginator )
{{$socials->links()}}
@endif {{-- pagination links div --}}