PATH:
home
/
lab2454c
/
healthvalidate.com
/
resources
/
views
/
admin
/
dashboard
/
legal_consent
@extends('layouts.admin.dashboard') @section('content') <div class="inner__body__wrapp faq__wrap"> @include('validation.flashmessage') <div class="list__header__wrapp"> <h2>{{ __('Legal Consent')}}</h2> </div> <div class="table-responsive"> <table class="table table-sm"> <thead> <tr> <th scope="col">{{ __('Legal Title')}}</th> <th scope="col">{{ __('Trip Management Privacy Title')}}</th> <th scope="col">{{ __('Health Data Consent Title')}}</th> <th scope="col">{{ __('Data Transfer Consent Title')}}</th> <th scope="col">{{ __('Action')}}</th> </tr> </thead> <tbody> @forelse($legalConsents as $legalConsent) <tr class="manage__user__data__table"> <td>{{ $legalConsent->legal_title }}</th> <td>{{ $legalConsent->trip_management_privacy_title }}</th> <td>{{ $legalConsent->health_data_consent_title }}</th> <td>{{ $legalConsent->data_transfer_consent_title }}</th> <td> <ul class="list-inline m-0"> <li class="list-inline-item"> <a href='{{ route("admin.legalConsent.edit", $legalConsent)}}' class="btn btn-success btn-sm" title="{{ __('Edit')}}"> <i class="fa fa-eye"></i></a> </li> </ul> </td> </tr> @empty <td colspan="5">No Legal Data Found</td> @endforelse </tbody> </table> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]