@extends('backend.template') @section('content')

{{ label("Applicants List") }}

{{label("Create New")}}
@php $i = 1; @endphp @foreach ($data as $item) @endforeach
{{label("Sn.")}} {{ label("name") }} {{ label("father_name") }} {{ label("mobile") }} {{ label("sex") }} {{ label("dob") }} {{ label("email") }} {{ label("religion") }} {{ label("marital_status") }} {{ label("qualification") }} {{ label("biodata") }} {{ label("photo") }} {{ label("passport_no") }} {{ label("passport_copy") }} {{ label("Action") }}
{{ $i++ }}{{ $item->name }} {{ $item->father_name }} {{ $item->mobile }} {{ $item->sex }} {{ $item->dob }} {{ $item->email }} {{ $item->religion }} {{ $item->marital_status }} {{ $item->qualification }} {{ $item->biodata }} {{ showImageThumb($item->photo) }} {{ $item->passport_no }} {{ showImageThumb($item->passport_copy) }}
@endsection @push("css") @endpush @push("js") @endpush