@extends('home.partial.layout') @section('content')

SCF Data

@if ($edit_masters)
{{ method_field('PUT') }} @else @endif @csrf

{{$edit_masters ? 'Edit' : 'Create'}}

@if ($edit_masters) @endif
@if (session()->has('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@forelse ($scf_datas as $scf_data) @empty @endforelse
# SCF Status Action

{{$loop->iteration}}

{{$scf_data->scf}} {{$scf_data->status == 1 ? 'Active' : 'In Active'}}
There are no records to display!
@forelse ($scf_datas as $scf_data) @empty @endforelse
@endsection