@extends('layouts.head_office_app')
@section('title', 'Head office Settings')
@section('sub-header')
@if ($history_data->isNotEmpty())
@foreach ($history_data as $data)
{{-- @dd($data) --}}
{{--
Removed Tags:
--}}
{{ $data->name }}
@if ($data->action == 'removed')
{{--
Added Tags:
--}}
{{ $data->removed }}
@endif
@endforeach
@else
Data not found
@endif
{{-- @endif --}}
@endsection