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