@extends('frontend.layouts.app') @section('title') College Program @endsection @push('style') @endpush @section('content') @include('frontend.layouts.include.breadcrumb', [ 'items' => [['name' => 'Co-Curricular', 'url' => '#'],['name' => 'College Program', 'url' => null]], ])
@foreach ($programs as $program)
{{ Str::limit($program->title, 60, '...') }}

{{ Str::limit(strip_tags($program->description), 120, '...') }}

{{ $program->created_at->format('d M, Y') }} Read More
@endforeach
{{ $programs->links('vendor.pagination.frontend') }}
@endsection @push('script') @endpush