@extends('layouts.index') @section('content')

{{ $title }}

@include('includes.message')
@foreach($table_columns as $column) @if($column !== 'id') @endif @endforeach @foreach($data as $key => $about) @foreach($table_columns as $column) @if($column !== 'id' && $column !== 'status') @endif @if($column == 'status') @endif @endforeach @endforeach
Sr. No. {{ ucfirst(str_replace('_', ' ', $column)) }}Actions
{{ $key + 1 }} @if($column === 'youtube_link') {{ $about->$column }} @else {{ $about->$column }} @endif @if($about->$column == 1) Active @else Inactive @endif Edit
{{ $data->links() }}
@endsection