@extends('layouts.member-app')
@section('page-title')
@endsection
@push('head-script')
@endpush
@section('content')
Listing of Assign Keywords
@for($i=1;$i<5;$i++)
{{$keyName[$i]}}
@if(!empty($assignList) && !empty($assignList[$i]))
@foreach($assignList[$i] as $key => $value)
| {{$loop->iteration}} |
{{$value['keyword']}} |
{{$value['agent']}} |
@endforeach
@endif
@endfor
@endsection
@push('footer-script')
@endpush