@extends('layout.admin')
@section('title')
Investor Relations
@endsection
@section('content')
Investor Relation List
{{--
--}}
# |
Icon |
Name |
Url |
Actions |
@if ($data->count() > 0)
@php $i = 1; @endphp
@foreach ($data as $d)
{{ $i }} |
|
{{ $d->name }}
|
{{ $d->url }} |
|
@php $i++ @endphp
@endforeach
@else
No data found
|
@endif
@endsection
@section('js-add')
@endsection