@extends('layouts.admin') @section('title', 'Sub-Order Type List') @section('content-header', 'Sub-Order Type List') @section('content-actions') Add Sub-Order Type @endsection @section('content')
@foreach ($sub_order_types as $sub_order_type) @endforeach
Sub-Order Type Status Created By Updated By Updated At Action
{{ $sub_order_type->sub_order_type }} {{ $sub_order_type->status ? 'Active' : 'Inactive' }} {{ $sub_order_type->created_by }} {{ $sub_order_type->updated_by }} {{ $sub_order_type->updated_at }}
@endsection @section('js') @endsection