@extends('layouts.admin') @section('title') Contract Types @endsection @section('content')

Add Contract Type


@csrf

@if(count($contract_types) > 0) @foreach($contract_types as $t) @endforeach @else @endif
# Title (EN) Title (KM) Status Actions
{{ $i++ }} {{ $t->title_en }} {{ $t->title_km }} @if($t->status == 'active')
Active
@elseif($t->status == 'inactive')
Inactive
@endif
No Contract Type found
@endsection @section('script') @endsection