@extends('admin.layouts.app') @section('page_content')
Add Feature News
@csrf
{{--
--}}
@csrf
0) ? 'checked' : '' }} class="custom-control-input" id="is_show_home" value="1" name="is_show_home">
Feature News List
@foreach($feature_news as $key => $feature_new) @endforeach
S.no. Image News Title Show Home Page Action
{{$key+1}} @if(file_exists($feature_new->thumbnail_image)) @else @endif {{$feature_new->title}} {{($feature_new->is_show_home == 1) ? 'Yes' : 'No'}} @if($feature_new->is_featured == 0) @php($feature_url = route('admin.cms.feature_news.status', ['id'=>$feature_new->id, 'status'=>1])) @else @php($feature_url = route('admin.cms.feature_news.status', ['id'=>$feature_new->id, 'status'=>0])) Remove Featured {{-- @if($feature_new->is_show_home == 1) @php($is_show_home = route('admin.cms.feature_news.status', ['id'=>$feature_new->id, 'status'=>1,'is_show_home'=>0])) Remove at @else @php($is_show_home = route('admin.cms.feature_news.status', ['id'=>$feature_new->id, 'status'=>1,'is_show_home'=>1])) Add to @endif --}} @endif
@endsection