@extends('admin.main') {{-- Index Categories ( Card->table->list ) --}} @section('content') {{-- Card With Table ( Records index Lists ) --}} @component('operation.card',['title'=>@$title])
@forelse($table_data as $row) @empty empty @endforelse
# Name Nick name Action
1 PUNJABI Png
{{ $row->id.' '.$row->name }} {{ $row->nick_name }}
@endcomponent @component('operation.modal',['title'=>@$title])
@endcomponent @endsection {{-- #content --}}