@extends('layouts.app') @section('title', 'Funding Sources') @push('stylesheets') @include('partials.index-datatable-styles') @include('partials.filter-card-styles') @endpush @section('contents') Search @forelse ($fundingSources as $fs) {{ $fs->name }} @if($fs->status) Active @else Inactive @endif {{ $fs->created_at->format('d M Y') }} @empty @endforelse @endsection @push('scripts') @include('partials.index-datatable-scripts') @endpush