@extends('layouts.master')
@section('title', 'Find Methods')
@section('css')
@endsection
@section('content')
{{ __('translation.Find_Method_List') }}
{{ __('translation.Add') }}
{{ __('translation.No') }} |
{{ __('translation.How_to_Here') }} |
{{ __('translation.Status') }} |
{{ __('translation.Action') }} |
@foreach ($data as $key => $d)
{{ $key + 1 }} |
{{ $d->how_to_here }} |
{{ $d->status == 'Y' ? 'Yes' : 'No' }} |
|
@endforeach
@endsection
@section('script')
@endsection