@php
$title = 'Expense Types'
@endphp
@section('title')
{{$title}}
@endsection
@extends('layout')
@section('main-content')
| Sl.No |
Name |
Is Image Required |
Status |
Action |
@foreach($expenseTypes as $key => $expenseType)
| {{$key + 1}} |
{{$expenseType->name}} |
@if($expenseType->is_img_required)
@else
@endif
|
|
{{-- --}}
|
@endforeach
@endsection
@section('scripts')
@endsection