@extends('layouts.admin')
@section('content')
| Name |
Mobile |
Email |
Address |
PAN |
AADHAR |
P/O % |
Deduction % |
Date |
Edit |
Delete |
@if (!empty($content))
@foreach ($content as $contents)
| {{ $contents->name }} |
{{ $contents->mobile }} |
{{ $contents->email }} |
{{ $contents->address }} |
{{ $contents->pan }} |
{{ $contents->aadhar }} |
{{ $contents->payout }} |
{{ $contents->deduction }} |
{{ date('d-M-y', strtotime($contents->updated_at)) }} |
|
|
@endforeach
@endif
| Name |
Mobile |
Email |
Address |
PAN |
AADHAR |
P/O % |
Deduction % |
Date |
Edit |
Delete |
@endsection