@extends('student.layouts.app') @section('titlePage', 'Study Guide') @section('content')
@include('common.alert')
Reset
@foreach ($data as $value) @endforeach
Subject Content Type Description Action
{{str_limit( $value->title, 30)}} @switch($value->content_type) @case('file') File @break @case('audio') Audio @break @case('audio_url') Audio @break @case('video_url') video @break @default {{$value->content_type}} @break @endswitch {!! substr(strip_tags($value->description),0,50) !!}... View Content
{{-- Pagination --}}
@if(count($data) > 0) Showing {{$data->firstItem()}} to {{$data->lastItem()}} of {{$data->total()}} Entries @else No Record @endif
{!! $data->appends(request()->all())->links() !!}
@endsection