@extends('layouts/contentNavbarLayout') @section('title', 'Designplus - Metta') @section('content')

Meta / Manage Meta


@if(session('success') || session('error'))
{{ session('success') ? session('success') : session('error') }}
@endif
Manage Meta
@foreach($columns as $column) @if ($column !== 'id' && $column !== 'metta_description' && $column !== 'metta_keyword' && $column !== 'metta_title' && $column !== 'page_title') {{-- Skip the 'id' column --}} @if ($column === 'image_path') @else @endif @endif @endforeach @foreach($paginationdata as $item) @foreach($columns as $column) @if ($column !== 'id' && $column !== 'metta_description' && $column !== 'metta_keyword' && $column !== 'metta_title' && $column !== 'page_title') {{-- Skip the 'id' column --}} @endif @endforeach @endforeach
Metta Image{{ ucfirst($column) }}Actions
@if ($column === 'image_path') {{-- Display thumbnail image --}} @if(!empty($item->{$column})) {{ $item->alt }} @endif @else {{ $item->{$column} }} @endif


@endsection