@extends('layouts.app') @section('content')
@if ($errors->any()) @endif
{{ $title }}
Create
@php $columns = [ [ 'title' => 'S.N', 'data' => 'DT_RowIndex', 'name' => 'DT_RowIndex', 'orderable' => false, 'searchable' => false, 'sortable' => false, ], ['title' => 'Country', 'data' => 'country', 'name' => 'country'], ['title' => 'Alone', 'data' => 'alone', 'name' => 'alone'], ['title' => 'With Spouse', 'data' => 'with_spouse', 'name' => 'with_spouse'], ['title' => 'With Spouse and Child', 'data' => 'with_spouse_and_child', 'name' => 'with_spouse_and_child'], ['title' => 'Status', 'data' => 'status', 'name' => 'status'], [ 'title' => 'Action', 'data' => 'action', 'orderable' => false, 'searchable' => false, ], ]; @endphp
@endsection