@extends('back.layouts.layout') @section('title','Client List') @section('content-header') Client List Dashboard Client Client List @endsection @section('content') Add Client Sl Name Data Image Status Action @foreach($clients as $client) {{ $loop->iteration }} {{ $client->name }} Order : {{ $client->order }} Featured : {{ ($client->featured == 1) ? 'Yes' : 'No' }} @if($client->image!="") @endif @if($client->status ==1)Published @else Unpublished @endif @method('DELETE') @csrf @endforeach @endsection