@extends('backend.layouts.app') @section('title', 'Financing') @section('content') all financings Add # Title Resident Type Interest Rate Status Actions @forelse($financings as $key => $financing) {{++$key}} {{$financing->title}} {{$financing->residentType->type}} {{$financing->interest_rate}} @if($financing->is_published == '1') Published @else Draft @endif Edit Delete @empty No data available. @endforelse @stop