@extends('layouts.admin_layout')
@section('content')
@section('title', 'API List')
S.No |
End Point |
Method |
Status |
Action |
@foreach($apis as $key=>$row)
{{$key+1+($apis->currentPage()-1) * ($apis->perPage())}} |
{{$row->api_endpoint}} |
{{$row->api_method}} |
{{$row->api_status}} |
View
Edit
Delete
|
@endforeach
{{$apis->links()}}
@include('includes.admin.footer')
@include('includes/admin/delete-model')
@stop