@extends('layouts.backend.app')
@section('title', 'Finances')
@push('css')
@endpush
@section('content')
Id |
Name |
Status |
Total Filed |
Action |
@foreach ($finances as $key => $finance)
{{ $key + 1 }} |
{{ $finance->name }} |
@if ($finance->status == true)
Active
@else
Inactive
@endif
|
{{ $finance->fileds->count() }}
|
|
@endforeach
{{ $finances->links() }}
@endsection
@push('js')
@endpush