@extends('back.layouts.layout') @section('title','Content List') @section('content-header') Content List Dashboard Content Content List @endsection @section('content') Sl Name Text Data Image Status Action @foreach($contents as $content) {{ $loop->iteration }} {{ $content->name }} {!! $content->text !!} Btn Text : {{ $content->btn_text }} Link : {{ $content->link }} @if($content->image!="") @endif @if($content->status ==1)Published @else Unpublished @endif @endforeach @endsection