@extends('backend.layouts.grid') @section('title', __('Announcements')) @section('link', route('admin.announcements.create')) @section('content')
| {{ __('#') }} | {{ __('Campus') }} | {{ __('Shift') }} | {{ __('Class') }} | {{ __('Section') }} | {{ __('Student') }} | {{ __('Title') }} | {{ __('Description') }} | {{ __('Created date') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $announcement->id }} | {{ $announcement->campus }} | {{ $announcement->shift }} | {{ $announcement->class_id }} | @if($announcement->section == 0) {{ 'All' }} @else {{ studentSection($announcement->section) }} @endif | {{ ($announcement->student_id == 0)?"All":$announcement->student_id }} | {{ shortertext($announcement->title, 40) }} | {!! shortertext($announcement->content, 50) !!} | {{ vDate($announcement->created_at) }} |
|